mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
32 lines
717 B
Nix
32 lines
717 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, ncurses
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cdk";
|
|
version = "5.0-20230201";
|
|
|
|
src = fetchurl {
|
|
url = "https://invisible-mirror.net/archives/cdk/cdk-${finalAttrs.version}.tgz";
|
|
hash = "sha256-oxJ7Wf5QX16Jjao90VsM9yShJ0zmgWW3eb4vKdTE8vY=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|