* Added `zapping', a TV viewer application. It depends on Gnome, so

lots of packages are needed.

svn path=/nixpkgs/trunk/; revision=681
This commit is contained in:
Eelco Dolstra
2004-01-21 09:34:19 +00:00
parent e0f8b5d722
commit 823b3e4770
38 changed files with 723 additions and 9 deletions
@@ -0,0 +1,15 @@
{stdenv, fetchurl, gettext}:
assert !isNull gettext;
derivation {
name = "popt-1.7";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/popt-1.7.tar.gz;
md5 = "5988e7aeb0ae4dac8d83561265984cc9";
};
stdenv = stdenv;
gettext = gettext;
}