887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
30 lines
782 B
Nix
30 lines
782 B
Nix
{ stdenv, eggDerivation, fetchFromGitHub, chickenEggs }:
|
|
|
|
# Note: This mostly reimplements the default.nix already contained in
|
|
# the tarball. Is there a nicer way than duplicating code?
|
|
|
|
let
|
|
version = "c5-git";
|
|
in
|
|
eggDerivation {
|
|
src = fetchFromGitHub {
|
|
owner = "corngood";
|
|
repo = "egg2nix";
|
|
rev = "chicken-5";
|
|
sha256 = "1vfnhbcnyakywgjafhs0k5kpsdnrinzvdjxpz3fkwas1jsvxq3d1";
|
|
};
|
|
|
|
name = "egg2nix-${version}";
|
|
buildInputs = with chickenEggs; [
|
|
args matchable
|
|
];
|
|
|
|
meta = {
|
|
description = "Generate nix-expression from CHICKEN scheme eggs";
|
|
homepage = "https://github.com/the-kenny/egg2nix";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ corngood ];
|
|
};
|
|
}
|