2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, ncurses }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cdk";
|
2023-01-11 07:51:40 +00:00
|
|
|
version = "5.0-20221025";
|
2020-04-24 23:36:52 +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-11 07:51:40 +00:00
|
|
|
hash = "sha256-A8z6Icn8PWHd0P2hnaVFNZBVu+71ociC37n/SPN0avI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
2021-12-19 01:06:50 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Curses development kit";
|
2021-12-19 01:06:50 +00:00
|
|
|
homepage = "https://invisible-island.net/cdk/";
|
2023-01-11 07:51:40 +00:00
|
|
|
changelog = "https://invisible-island.net/cdk/CHANGES";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|