1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

Update lib re

This commit is contained in:
Michael Raskin 2014-07-01 11:51:28 +04:00
parent 0fcee20522
commit 4f4a378a02

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl, zlib, openssl}: {stdenv, fetchurl, zlib, openssl}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.4.2"; version = "0.4.9";
name = "libre-${version}"; name = "libre-${version}";
src=fetchurl { src=fetchurl {
url = "http://www.creytiv.com/pub/re-${version}.tar.gz"; url = "http://www.creytiv.com/pub/re-${version}.tar.gz";
sha256 = "1c99ygs46qhd4a0ardxhdyjaw5p8clhzmsm8jydqxnmbakwy518m"; sha256 = "1i98z9qw3jpkaq419189vr8h3qcxqlz40dls77rbn4c0agc69703";
}; };
buildInputs = [zlib openssl]; buildInputs = [zlib openssl];
makeFlags = [ makeFlags = [
@ -19,5 +19,9 @@ stdenv.mkDerivation rec {
platforms = with stdenv.lib.platforms; linux; platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin]; maintainers = with stdenv.lib.maintainers; [raskin];
license = with stdenv.lib.licenses; bsd3; license = with stdenv.lib.licenses; bsd3;
inherit version;
downloadPage = "http://www.creytiv.com/pub/";
updateWalker = true;
downloadURLRegexp = "/re-.*[.]tar[.].*";
}; };
} }