about summary refs log tree commit diff
path: root/pkgs/development/compilers/chicken/5/egg2nix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/chicken/5/egg2nix.nix')
-rw-r--r--pkgs/development/compilers/chicken/5/egg2nix.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/compilers/chicken/5/egg2nix.nix b/pkgs/development/compilers/chicken/5/egg2nix.nix
deleted file mode 100644
index 3e2cc49a2669..000000000000
--- a/pkgs/development/compilers/chicken/5/egg2nix.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, 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";
-    mainProgram = "egg2nix";
-    homepage = "https://github.com/the-kenny/egg2nix";
-    license = lib.licenses.bsd3;
-    platforms = lib.platforms.unix;
-    maintainers = with lib.maintainers; [ corngood ];
-  };
-}