Merge branch 'origin/master' into stdenv-updates.

There was a minor conflict in 'stumpwm'. The package needs texinfo
version 4.x. At least is used to, I'm not sure whether it still does.
This commit is contained in:
Peter Simons
2013-10-18 18:57:24 +02:00
1177 changed files with 57151 additions and 6093 deletions
+23
View File
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
name = "gzrt-0.8";
src = fetchurl {
url = "http://www.urbanophile.com/arenn/coding/gzrt/${name}.tar.gz";
sha256 = "1vhzazj47xfpbfhzkwalz27cc0n5gazddmj3kynhk0yxv99xrdxh";
};
buildInputs = [ zlib ];
installPhase = ''
mkdir -p $out/bin
cp gzrecover $out/bin
'';
meta = {
homepage = http://www.urbanophile.com/arenn/hacking/gzrt/;
description = "The gzip Recovery Toolkit";
license = stdenv.lib.licenses.gpl3;
};
}