8e9ead8656
The shutdown was announced years ago, only now it stopped working.
13 lines
286 B
Nix
13 lines
286 B
Nix
{stdenv, fetchurl, libxml2, openssl, bzip2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "dclib-0.3.7";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.debian.nl/pub/freebsd/ports/distfiles/dclib-0.3.7.tar.bz2;
|
|
md5 = "d35833414534bcac8ce2c8a62ce903a4";
|
|
};
|
|
|
|
buildInputs = [libxml2 openssl bzip2];
|
|
}
|