Added libv4l which is now a required dependency for kdenetwork-4.4.1

svn path=/nixpkgs/trunk/; revision=20349
This commit is contained in:
Sander van der Burg
2010-03-03 10:37:38 +00:00
parent 5984fe2daa
commit e51cfc777a
4 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libv4l-0.6.2";
src = fetchurl {
url = http://people.atrpms.net/~hdegoede/libv4l-0.6.1.tar.gz;
sha256 = "1grbyb9vsdlp6yx4inmazgp5g0jxga8wbl3h8dv6vlfh5hckxf9n";
};
installPhase = "make PREFIX=$out install";
}