summary refs log tree commit diff
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-05-01 20:10:20 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2015-05-01 20:46:07 +0200
commit78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5 (patch)
treec7db54dac5c44af15c3668d70609d4be6bbb7238 /pkgs/development/tools/documentation
parent4c01e6d91993b6de128795f4fbdd25f6227fb870 (diff)
downloadnixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.tar
nixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.tar.gz
nixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.tar.bz2
nixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.tar.lz
nixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.tar.xz
nixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.tar.zst
nixpkgs-78a877bef1e7914b8a5506a5cb33cd70b9c5f3f5.zip
Delete redundant docutils expression
`development/tools/documentation/docutils` is also provided
by `pythonPackages`; use that instead.
Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/docutils/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/tools/documentation/docutils/default.nix b/pkgs/development/tools/documentation/docutils/default.nix
deleted file mode 100644
index cd01cf059d6..00000000000
--- a/pkgs/development/tools/documentation/docutils/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-a :  
-let 
-  fetchurl = a.fetchurl;
-
-  version = a.lib.attrByPath ["version"] "0.11" a;
-  buildInputs = with a; [
-    python pil makeWrapper
-  ];
-in
-rec {
-  src = fetchurl {
-    url = "http://prdownloads.sourceforge.net/docutils/docutils-${version}.tar.gz";
-    sha256 = "1jbybs5a396nrjy9m13pgvsxdwaj7jw7nsawkhl4fi1nvxm1dx4s";
-  };
-
-  inherit buildInputs;
-  configureFlags = [];
-
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["installPythonPackage" "wrapBinContentsPython"];
-      
-  name = "python-docutils-" + version;
-  meta = {
-    description = "Processor of ReStructured Text";
-  };
-}
-