1442e8ec22
svn path=/nixpkgs/trunk/; revision=6711
13 lines
275 B
Nix
13 lines
275 B
Nix
{stdenv, fetchurl, python}:
|
|
|
|
stdenv.mkDerivation {
|
|
name="clearsilver-0.10.3";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/clearsilver-0.10.3.tar.gz;
|
|
md5 = "ff4104b0e58bca1b61d528edbd902769";
|
|
};
|
|
builder = ./builder.sh;
|
|
|
|
inherit stdenv python;
|
|
}
|