1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 00:49:52 +00:00
nixpkgs/pkgs/development/libraries/cdk/default.nix

21 lines
502 B
Nix
Raw Normal View History

2015-06-02 18:30:59 +01:00
{stdenv, fetchurl, ncurses}:
let
buildInputs = [
ncurses
];
in
stdenv.mkDerivation {
name = "cdk";
inherit buildInputs;
src = fetchurl {
url = "http://invisible-island.net/datafiles/release/cdk.tar.gz";
2016-01-01 01:54:26 +00:00
sha256 = "0j74l874y33i26y5kjg3pf1vswyjif8k93pqhi0iqykpbxfsg382";
2015-06-02 18:30:59 +01:00
};
meta = {
description = ''Curses development kit'';
license = stdenv.lib.licenses.bsdOriginal ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}