2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, ncurses }:
|
2016-02-07 16:12:39 +00:00
|
|
|
|
2017-03-12 00:36:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cdk";
|
2023-01-08 20:55:38 +00:00
|
|
|
version = "5.0-20221025";
|
2016-02-07 16:12:39 +00:00
|
|
|
|
2015-06-02 17:30:59 +00:00
|
|
|
src = fetchurl {
|
2018-01-02 17:54:12 +00:00
|
|
|
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
|
|
|
};
|
2016-02-07 16:12:39 +00:00
|
|
|
|
2023-01-08 20:55:38 +00:00
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
2021-12-11 11:24:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-02-07 16:12:39 +00:00
|
|
|
description = "Curses development kit";
|
2021-12-11 11:24:23 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|