1 { lib, eggDerivation, fetchFromGitHub, chickenEggs }:
3 # Note: This mostly reimplements the default.nix already contained in
4 # the tarball. Is there a nicer way than duplicating code?
7 name = "egg2nix-${version}";
10 src = fetchFromGitHub {
14 sha256 = "sha256-5ov2SWVyTUQ6NHnZNPRywd9e7oIxHlVWv4uWbsNaj/s=";
17 buildInputs = with chickenEggs; [
22 description = "Generate nix-expression from CHICKEN scheme eggs";
23 homepage = "https://github.com/the-kenny/egg2nix";
24 license = lib.licenses.bsd3;
25 platforms = lib.platforms.unix;
26 maintainers = with lib.maintainers; [ corngood ];