nixpkgs/pkgs/development/libraries/cdk/default.nix

26 lines
534 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ncurses }:
2015-06-02 17:30:59 +00:00
let
version = "5.0-20160131";
in
stdenv.mkDerivation {
name = "cdk-${version}";
inherit version;
2015-06-02 17:30:59 +00:00
buildInputs = [
ncurses
];
2015-06-02 17:30:59 +00:00
src = fetchurl {
url = "ftp://invisible-island.net/cdk/cdk-${version}.tgz";
sha256 = "08ic2f5rmi8niaxwxwr6l6lhpan7690x52vpldnbjcf20rc0fbf3";
2015-06-02 17:30:59 +00:00
};
2015-06-02 17:30:59 +00:00
meta = {
description = "Curses development kit";
2015-06-02 17:30:59 +00:00
license = stdenv.lib.licenses.bsdOriginal ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}