summary refs log tree commit diff
path: root/pkgs/development/pure-modules/csv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/pure-modules/csv/default.nix')
-rw-r--r--pkgs/development/pure-modules/csv/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/pure-modules/csv/default.nix b/pkgs/development/pure-modules/csv/default.nix
deleted file mode 100644
index 767ac0432ee..00000000000
--- a/pkgs/development/pure-modules/csv/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, pure }:
-
-stdenv.mkDerivation rec {
-  pname = "pure-csv";
-  version = "1.6";
-
-  src = fetchurl {
-    url = "https://bitbucket.org/purelang/pure-lang/downloads/pure-csv-${version}.tar.gz";
-    sha256 = "fe7c4edebe8208c54d5792a9eefaeb28c4a58b9094d161a6dda8126f0823ab3c";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-  propagatedBuildInputs = [ pure ];
-  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
-  setupHook = ../generic-setup-hook.sh;
-
-  meta = {
-    description = "Comma Separated Value Interface for the Pure Programming Language";
-    homepage = "http://puredocs.bitbucket.org/pure-csv.html";
-    license = lib.licenses.free;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ asppsa ];
-  };
-}