lol
0
fork

Configure Feed

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

ocamlPackages.curses: 1.0.4 -> 1.0.8

https://github.com/mbacarella/curses/raw/1.0.8/CHANGES

authored by

Mario Rodas and committed by
Vincent Laporte
2ed7f96a a362961f

+11 -8
+11 -8
pkgs/development/ocaml-modules/curses/default.nix
··· 1 - { lib, stdenv, fetchurl, ocaml, findlib, ncurses }: 1 + { lib, stdenv, fetchFromGitHub, ocaml, findlib, ncurses }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ocaml-curses"; 5 - version = "1.0.4"; 5 + version = "1.0.8"; 6 6 7 - src = fetchurl { 8 - url = "http://ocaml.phauna.org/distfiles/ocaml-curses-${version}.ogunden1.tar.gz"; 9 - sha256 = "08wq1r93lincdfzlriyc5nl2p4q7ca4h6ygzgp1nhkgd93pgk9v2"; 7 + src = fetchFromGitHub { 8 + owner = "mbacarella"; 9 + repo = "curses"; 10 + rev = version; 11 + sha256 = "0yy3wf8i7jgvzdc40bni7mvpkvclq97cgb5fw265mrjj0iqpkqpd"; 10 12 }; 11 13 12 14 propagatedBuildInputs = [ ncurses ]; 13 15 14 - buildInputs = [ ocaml findlib ]; 16 + nativeBuildInputs = [ ocaml findlib ]; 15 17 16 18 # Fix build for recent ncurses versions 17 19 NIX_CFLAGS_COMPILE = "-DNCURSES_INTERNALS=1"; ··· 26 28 27 29 meta = with lib; { 28 30 description = "OCaml Bindings to curses/ncurses"; 29 - homepage = "https://opam.ocaml.org/packages/curses/curses.1.0.4/"; 30 - license = licenses.gpl2; 31 + homepage = "https://github.com/mbacarella/curses"; 32 + license = licenses.lgpl21Plus; 33 + changelog = "https://github.com/mbacarella/curses/raw/${version}/CHANGES"; 31 34 maintainers = [ maintainers.volth ]; 32 35 platforms = ocaml.meta.platforms or []; 33 36 };