My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/ipkgparser.nix

26 lines
629 B

{ build-idris-package
, fetchFromGitHub
, contrib
, effects
, lightyear
, lib
}:
build-idris-package {
pname = "ipkgparser";
version = "2017-11-14";
idrisDeps = [ contrib effects lightyear ];
src = fetchFromGitHub {
owner = "emptyflash";
repo = "idris-ipkg-parser";
rev = "35cc2f54d4f3b3710f637d0a8c897bfbb32fe183";
sha256 = "0vn3pigqddfy7cld0386hxzdv2nkl8mdpsx97hvyvqzrdpz4wl2q";
};
meta = {
description = "Parser for Idris iPkg files written in Idris using Lightyear";
homepage = "https://github.com/emptyflash/idris-ipkg-parser";
maintainers = [ lib.maintainers.brainrape ];
};
}