1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Added zdelta 2.1.

svn path=/nixpkgs/trunk/; revision=1817
This commit is contained in:
Eelco Dolstra 2004-11-29 19:35:42 +00:00
parent d6841ce1fb
commit 9ebbbd25cc
4 changed files with 24 additions and 0 deletions

View file

@ -102,6 +102,10 @@ rec {
inherit fetchurl stdenv;
};
zdelta = (import ../tools/compression/zdelta) {
inherit fetchurl stdenv;
};
which = (import ../tools/system/which) {
inherit fetchurl stdenv;
};

View file

@ -14,6 +14,7 @@ let {
unzip
gzip
bzip2
zdelta
wget
par2cmdline
cksfv

View file

@ -0,0 +1,9 @@
. $stdenv/setup
installPhase=installPhase
installPhase() {
ensureDir $out/bin
cp -p zdc zdu $out/bin
}
genericBuild

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "zdelta-2.1";
builder = ./builder.sh;
src = fetchurl {
url = http://cis.poly.edu/zdelta/downloads/zdelta-2.1.tar.gz;
md5 = "c69583a64f42f69a39e297d0d27d77e5";
};
}