about summary refs log tree commit diff
path: root/pkgs/development/compilers/pakcs/curry-frontend.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/pakcs/curry-frontend.nix')
-rw-r--r--pkgs/development/compilers/pakcs/curry-frontend.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/compilers/pakcs/curry-frontend.nix b/pkgs/development/compilers/pakcs/curry-frontend.nix
deleted file mode 100644
index acf658024b01..000000000000
--- a/pkgs/development/compilers/pakcs/curry-frontend.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ mkDerivation, base, binary, bytestring, Cabal, containers
-, directory, extra, file-embed, filepath, lib, mtl, network-uri
-, parsec, pretty, process, set-extra, template-haskell, time
-, transformers
-}:
-mkDerivation {
-  pname = "curry-frontend";
-  version = "2.1.0";
-  src = ./.;
-  isLibrary = true;
-  isExecutable = true;
-  enableSeparateDataOutput = true;
-  libraryHaskellDepends = [
-    base binary bytestring containers directory extra file-embed
-    filepath mtl network-uri parsec pretty process set-extra
-    template-haskell time transformers
-  ];
-  executableHaskellDepends = [ base ];
-  testHaskellDepends = [
-    base bytestring Cabal containers directory extra file-embed
-    filepath mtl network-uri pretty process set-extra template-haskell
-    transformers
-  ];
-  homepage = "http://curry-language.org";
-  description = "Compile the functional logic language Curry to several intermediate formats";
-  license = lib.licenses.bsd3;
-  mainProgram = "curry-frontend";
-}