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/config.nix

28 lines
665 B

{ build-idris-package
, fetchFromGitHub
, effects
, containers
, lightyear
, test
, lib
}:
build-idris-package {
pname = "config";
version = "2017-11-06";
idrisDeps = [ effects containers lightyear test ];
src = fetchFromGitHub {
owner = "benclifford";
repo = "idris-config";
rev = "92f98652f5cb06a76c47809f16c661ec6cf11048";
sha256 = "1w2w2l4drvkf8mdzh3lwn6l5lnkbxlx9p22s7spw82n5s4wib6c9";
};
meta = {
description = "Parsers for various configuration files written in Idris.";
homepage = "https://github.com/benclifford/idris-config";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}