2018-11-14 03:17:50 +00:00
|
|
|
{ stdenv, eggDerivation, fetchFromGitHub, chickenEggs }:
|
2014-10-13 23:41:03 +01:00
|
|
|
|
|
|
|
# Note: This mostly reimplements the default.nix already contained in
|
|
|
|
# the tarball. Is there a nicer way than duplicating code?
|
|
|
|
|
2014-10-27 00:13:23 +00:00
|
|
|
let
|
2018-11-14 03:17:50 +00:00
|
|
|
version = "c5-git";
|
2014-10-27 00:13:23 +00:00
|
|
|
in
|
2014-10-13 23:41:03 +01:00
|
|
|
eggDerivation {
|
2018-11-14 03:17:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "corngood";
|
|
|
|
repo = "egg2nix";
|
|
|
|
rev = "chicken-5";
|
|
|
|
sha256 = "1vfnhbcnyakywgjafhs0k5kpsdnrinzvdjxpz3fkwas1jsvxq3d1";
|
2014-10-13 23:41:03 +01:00
|
|
|
};
|
|
|
|
|
2014-10-27 00:13:23 +00:00
|
|
|
name = "egg2nix-${version}";
|
2014-10-13 23:41:03 +01:00
|
|
|
buildInputs = with chickenEggs; [
|
2018-11-14 03:17:50 +00:00
|
|
|
args matchable
|
2014-10-13 23:41:03 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2014-10-27 00:13:23 +00:00
|
|
|
description = "Generate nix-expression from CHICKEN scheme eggs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/the-kenny/egg2nix";
|
2014-10-13 23:41:03 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2020-05-09 10:25:07 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ corngood ];
|
2014-10-13 23:41:03 +01:00
|
|
|
};
|
|
|
|
}
|