summary refs log tree commit diff
path: root/pkgs/development/pure-modules/doc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/pure-modules/doc/default.nix')
-rw-r--r--pkgs/development/pure-modules/doc/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/pure-modules/doc/default.nix b/pkgs/development/pure-modules/doc/default.nix
deleted file mode 100644
index 2940c58b21b..00000000000
--- a/pkgs/development/pure-modules/doc/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, pure }:
-
-stdenv.mkDerivation rec {
-  pname = "pure-doc";
-  version = "0.7";
-
-  src = fetchurl {
-    url = "https://bitbucket.org/purelang/pure-lang/downloads/pure-doc-${version}.tar.gz";
-    sha256 = "cfa880573941f37868269bcc443a09fecd2a141a78556383d2213f6c9f45ddd9";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ pure ];
-  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
-
-  meta = {
-    description = "A simple utility for literate programming and documenting source code written in the Pure programming language";
-    homepage = "http://puredocs.bitbucket.org/pure-doc.html";
-    license = lib.licenses.gpl3Plus;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ asppsa ];
-  };
-}