* Added bsdiff 4.2. Wow, this is even better than zdelta (which in

turn appears to be better than vdelta).

svn path=/nixpkgs/trunk/; revision=1819
This commit is contained in:
Eelco Dolstra
2004-11-29 21:17:29 +00:00
parent 9ebbbd25cc
commit 1d9072670b
5 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "bsdiff-4.2";
builder = ./builder.sh;
src = fetchurl {
url = http://www.daemonology.net/bsdiff/bsdiff-4.2.tar.gz;
md5 = "9f582a77eb76d116d82d1ad268ef48fa";
};
patches = [./makefile.patch];
}