about summary refs log tree commit diff
path: root/pkgs/development/compilers/chicken/4/egg2nix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/chicken/4/egg2nix.nix')
-rw-r--r--pkgs/development/compilers/chicken/4/egg2nix.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/compilers/chicken/4/egg2nix.nix b/pkgs/development/compilers/chicken/4/egg2nix.nix
deleted file mode 100644
index e175f17e1ab7..000000000000
--- a/pkgs/development/compilers/chicken/4/egg2nix.nix
+++ /dev/null
@@ -1,29 +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?
-
-eggDerivation rec {
-  name = "egg2nix-${version}";
-  version = "0.5";
-
-  src = fetchFromGitHub {
-    owner = "the-kenny";
-    repo = "egg2nix";
-    rev = version;
-    sha256 = "sha256-5ov2SWVyTUQ6NHnZNPRywd9e7oIxHlVWv4uWbsNaj/s=";
-  };
-
-  buildInputs = with chickenEggs; [
-    matchable http-client
-  ];
-
-  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 ];
-  };
-}