Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 718 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 ncurses, 6}: 7 8stdenv.mkDerivation (finalAttrs: { 9 pname = "cdk"; 10 version = "5.0-20250116"; 11 12 src = fetchurl { 13 url = "https://invisible-mirror.net/archives/cdk/cdk-${finalAttrs.version}.tgz"; 14 hash = "sha256-FQDUEiTVC3JyjMr+I8TuCWvIU1/W/bnodtpM3u3a3IM="; 15 }; 16 17 buildInputs = [ 18 ncurses 19 ]; 20 21 enableParallelBuilding = true; 22 23 meta = { 24 description = "Curses development kit"; 25 mainProgram = "cdk5-config"; 26 homepage = "https://invisible-island.net/cdk/"; 27 changelog = "https://invisible-island.net/cdk/CHANGES.html"; 28 license = lib.licenses.mit; 29 maintainers = with lib.maintainers; [ 30 raskin 31 ]; 32 inherit (ncurses.meta) platforms; 33 }; 34})