aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libre
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-07-01 11:51:28 +0400
committerMichael Raskin <7c6f434c@mail.ru>2014-07-01 11:54:09 +0400
commit4f4a378a020476ddad6edf21d1e0855f4628a3e0 (patch)
tree85946884ab3f396d69c9014a63c92e32f6e7db92 /pkgs/development/libraries/libre
parent0fcee205227604ed690407ebc94f06df1eb7ede2 (diff)
Update lib re
Diffstat (limited to 'pkgs/development/libraries/libre')
-rw-r--r--pkgs/development/libraries/libre/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libre/default.nix b/pkgs/development/libraries/libre/default.nix
index cc9139d664ea..c67df46e89c0 100644
--- a/pkgs/development/libraries/libre/default.nix
+++ b/pkgs/development/libraries/libre/default.nix
@@ -1,10 +1,10 @@
{stdenv, fetchurl, zlib, openssl}:
stdenv.mkDerivation rec {
- version = "0.4.2";
+ version = "0.4.9";
name = "libre-${version}";
src=fetchurl {
url = "http://www.creytiv.com/pub/re-${version}.tar.gz";
- sha256 = "1c99ygs46qhd4a0ardxhdyjaw5p8clhzmsm8jydqxnmbakwy518m";
+ sha256 = "1i98z9qw3jpkaq419189vr8h3qcxqlz40dls77rbn4c0agc69703";
};
buildInputs = [zlib openssl];
makeFlags = [
@@ -19,5 +19,9 @@ stdenv.mkDerivation rec {
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = with stdenv.lib.licenses; bsd3;
+ inherit version;
+ downloadPage = "http://www.creytiv.com/pub/";
+ updateWalker = true;
+ downloadURLRegexp = "/re-.*[.]tar[.].*";
};
}