nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

cdk: 5.0-20210109 -> 5.0-20221025

+7 -24
+7 -11
pkgs/development/libraries/cdk/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cdk"; 5 - version ="5.0-20210109"; 6 - 7 - buildInputs = [ 8 - ncurses 9 - ]; 5 + version = "5.0-20221025"; 10 6 11 7 src = fetchurl { 12 8 urls = [ 13 9 "ftp://ftp.invisible-island.net/cdk/cdk-${version}.tgz" 14 10 "https://invisible-mirror.net/archives/cdk/cdk-${version}.tgz" 15 11 ]; 16 - sha256 = "sha256-xBbJh793tPGycD18XkM7qUWMi+Uma/RUy/gBrYfnKTY="; 12 + hash = "sha256-A8z6Icn8PWHd0P2hnaVFNZBVu+71ociC37n/SPN0avI="; 17 13 }; 18 14 19 - patches = [ 20 - # Proposed upstream as https://lists.gnu.org/archive/html/bug-ncurses/2021-12/msg00004.html 21 - ./parallel.patch 15 + buildInputs = [ 16 + ncurses 22 17 ]; 23 18 24 19 enableParallelBuilding = true; ··· 21 26 meta = with lib; { 22 27 description = "Curses development kit"; 23 28 homepage = "https://invisible-island.net/cdk/"; 24 - license = licenses.bsdOriginal ; 25 - maintainers = [ maintainers.raskin ]; 29 + changelog = "https://invisible-island.net/cdk/CHANGES"; 30 + license = licenses.mit; 31 + maintainers = with maintainers; [ raskin ]; 26 32 platforms = platforms.linux; 27 33 }; 28 34 }
-13
pkgs/development/libraries/cdk/parallel.patch
··· 1 - --- a/Makefile.in 2 - +++ b/Makefile.in 3 - @@ -296,7 +296,9 @@ LIB_OBJECT = @LIB_OBJECT@ 4 - 5 - all sources :: $(AUTO_SRC) 6 - 7 - -$(OBJECTS) : include/cdk_config.h 8 - +# make sure we generate all headers before trying 9 - +# to build first source file. 10 - +$(OBJECTS) : $(MY_HDR) 11 - 12 - # 13 - # Standard library directive.