Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 25 lines 575 B view raw
1{ stdenv, fetchurl, ncurses }: 2 3stdenv.mkDerivation rec { 4 pname = "cdk"; 5 version ="5.0-20190224"; 6 7 buildInputs = [ 8 ncurses 9 ]; 10 11 src = fetchurl { 12 urls = [ 13 "ftp://ftp.invisible-island.net/cdk/cdk-${version}.tgz" 14 "https://invisible-mirror.net/archives/cdk/cdk-${version}.tgz" 15 ]; 16 sha256 = "0767xqwm377ak909c589vqm0v83slsnkm2ycq7bg545xx5nycncs"; 17 }; 18 19 meta = with stdenv.lib; { 20 description = "Curses development kit"; 21 license = licenses.bsdOriginal ; 22 maintainers = [ maintainers.raskin ]; 23 platforms = platforms.linux; 24 }; 25}