a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
15 lines
379 B
Nix
15 lines
379 B
Nix
{stdenv, fetchurl, perl, x11, libxml2, libjpeg, libpng, openssl, qt, dclib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "valknut-0.3.7";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://download.berlios.de/dcgui/valknut-0.3.7.tar.bz2;
|
|
md5 = "848f9b3f25af15c3f1837133ac4b9415";
|
|
};
|
|
|
|
buildInputs = [perl x11 libxml2 libjpeg libpng openssl qt dclib];
|
|
inherit openssl;
|
|
}
|