9f898a586b
can't assume that it will live forever). svn path=/nixpkgs/trunk/; revision=4624
13 lines
305 B
Nix
13 lines
305 B
Nix
{stdenv, fetchurl, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lcov-1.4pre-cvs-20041021";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/lcov-1.4pre-cvs-20041021.tar.gz;
|
|
md5 = "5150da759b4047b19d026c6ab1216841";
|
|
};
|
|
patches = [./lcov.patch];
|
|
inherit perl;
|
|
}
|