nixpkgs/pkgs/development/libraries/cdk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
714 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses }:
2017-03-12 00:36:11 +00:00
stdenv.mkDerivation rec {
pname = "cdk";
2023-01-08 20:55:38 +00:00
version = "5.0-20221025";
2015-06-02 17:30:59 +00:00
src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/cdk/cdk-${version}.tgz"
"https://invisible-mirror.net/archives/cdk/cdk-${version}.tgz"
];
2023-01-08 20:55:38 +00:00
hash = "sha256-A8z6Icn8PWHd0P2hnaVFNZBVu+71ociC37n/SPN0avI=";
2015-06-02 17:30:59 +00:00
};
2023-01-08 20:55:38 +00:00
buildInputs = [
ncurses
];
enableParallelBuilding = true;
meta = with lib; {
description = "Curses development kit";
homepage = "https://invisible-island.net/cdk/";
2023-01-08 20:55:38 +00:00
changelog = "https://invisible-island.net/cdk/CHANGES";
license = licenses.mit;
maintainers = with maintainers; [ raskin ];
2017-03-12 00:36:11 +00:00
platforms = platforms.linux;
2015-06-02 17:30:59 +00:00
};
}