summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-01-25 21:26:34 +0000
committerRobin Gloster <mail@glob.in>2016-01-30 20:31:04 +0000
commit9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c (patch)
tree0978449ce8542a8ad10b7e61eaaefdca07b484d6
parentf295fef41151c2320f81b635f8f277e4254055a6 (diff)
downloadnixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.tar
nixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.tar.gz
nixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.tar.bz2
nixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.tar.lz
nixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.tar.xz
nixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.tar.zst
nixlib-9d7e2baf3b96192c05cb1d34c7c8b7ce42d03a0c.zip
viewmtn: remove, source is offline and pkg dead
-rw-r--r--pkgs/applications/version-management/viewmtn/0.10.nix44
-rw-r--r--pkgs/top-level/all-packages.nix5
2 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/applications/version-management/viewmtn/0.10.nix b/pkgs/applications/version-management/viewmtn/0.10.nix
deleted file mode 100644
index be8cc83c3008..000000000000
--- a/pkgs/applications/version-management/viewmtn/0.10.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-args @ { monotone, cheetahTemplate, highlight, ctags, makeWrapper, graphviz, which, python, ... }: with args;
-rec {
-  src = fetchurl {
-    url = http://viewmtn.1erlei.de/downloads/viewmtn-0.10.tgz;
-    sha256 = "1c6y708xaf6pds1r6l00q7vpgfagfbnf95kqj168vw3xr3l8a4yx";
-  };
-
-  buildInputs = [python flup highlight monotone 
-    cheetahTemplate makeWrapper graphviz which];
-  configureFlags = [];
-  makeFlags = ["PREFIX=$out"];
-
-  /* doConfigure should be specified separately */
-  phaseNames = ["doInstall" 
-    (doPatchShebangs "$out/bin")
-    (makeManyWrappers "$out/bin/*" 
-      (pythonWrapperArguments + preservePathWrapperArguments)) 
-  ];
-      
-  doInstall = fullDepEntry (''
-    for i in dot mtn highlight; do 
-        sed -e "s@/usr/bin/$i@$(which $i)@" -i config.py.example
-    done
-    sed -e "s@'templates/'@'$out/share/viewmtn/templates/'@" -i config.py.example
-
-    fullOut=$(toPythonPath $out)
-    
-    mkdir -p $fullOut
-    mkdir -p $out/bin
-    mkdir -p $out/share/viewmtn
-    
-    cp -r * $fullOut
-    cp $fullOut/viewmtn.py $out/bin
-    
-    ln -s $fullOut/{AUTHORS,ChangeLog,INSTALL,LICENSE,README,TODO,config.py.example} $out/share/viewmtn
-    ln -s $fullOut/templates $out/share/viewmtn/
-    ln -s $fullOut/static $out/share/viewmtn/
-  '') ["minInit" "defEnsureDir" "addInputs" "doUnpack"];
-
-  name = "viewmtn-0.10";
-  meta = {
-    description = "Monotone web interface";
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 83c138fd7c0d..13e42df9a359 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -13564,11 +13564,6 @@ let
 
   vdpauinfo = callPackage ../tools/X11/vdpauinfo { };
 
-  viewMtn = builderDefsPackage (callPackage ../applications/version-management/viewmtn/0.10.nix)
-  {
-    flup = pythonPackages.flup;
-  };
-
   vim = callPackage ../applications/editors/vim {
     inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
   };