mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
32 lines
717 B
Nix
32 lines
717 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, ncurses
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cdk";
|
|
version = "5.0-20240619";
|
|
|
|
src = fetchurl {
|
|
url = "https://invisible-mirror.net/archives/cdk/cdk-${finalAttrs.version}.tgz";
|
|
hash = "sha256-Q28U6KdW5j3f9ZJ+73DJ3PceTFnVZYfiYwKk9yahnv8=";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Curses development kit";
|
|
mainProgram = "cdk5-config";
|
|
homepage = "https://invisible-island.net/cdk/";
|
|
changelog = "https://invisible-island.net/cdk/CHANGES.html";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ raskin AndersonTorres ];
|
|
inherit (ncurses.meta) platforms;
|
|
};
|
|
})
|