777c4ea1d7
* Added MythTV. But it doesn't build properly yet (it compiles fine, but it ignores the prefix). svn path=/nixpkgs/trunk/; revision=2077
10 lines
224 B
Nix
10 lines
224 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xf86vmext-2.2-cvs";
|
|
src = fetchurl {
|
|
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/xf86vmext-2.2-cvs.tar.bz2;
|
|
md5 = "5a5818accd51799626b8c6db429907e0";
|
|
};
|
|
}
|