summary refs log tree commit diff
path: root/pkgs/development/libraries/libestr/default.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-03-11 13:13:33 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-03-11 18:50:02 -0700
commit648c451a0c1c05817fe786f42833a6d1b8920ada (patch)
treeeb3d12fb7c3abefa64ba47397d20cdf78b3f7aac /pkgs/development/libraries/libestr/default.nix
parentaf3caf8cb16ee1f00ed9efecdd5f9fa79df8facd (diff)
downloadnixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.tar
nixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.tar.gz
nixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.tar.bz2
nixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.tar.lz
nixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.tar.xz
nixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.tar.zst
nixpkgs-648c451a0c1c05817fe786f42833a6d1b8920ada.zip
libestr: 0.1.9 -> 0.1.10
Diffstat (limited to 'pkgs/development/libraries/libestr/default.nix')
-rw-r--r--pkgs/development/libraries/libestr/default.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libestr/default.nix b/pkgs/development/libraries/libestr/default.nix
index 271311cf46c..ad37f9010c5 100644
--- a/pkgs/development/libraries/libestr/default.nix
+++ b/pkgs/development/libraries/libestr/default.nix
@@ -1,8 +1,18 @@
 { stdenv, fetchurl }:
-stdenv.mkDerivation {
-  name = "libestr-0.1.9";
+
+stdenv.mkDerivation rec {
+  name = "libestr-0.1.10";
+
   src = fetchurl {
-    url = http://libestr.adiscon.com/files/download/libestr-0.1.9.tar.gz;
-    sha256 = "06km9mlw5qq4aa7503l81d0qcghzl0n3lh0z41r1xjpa04nnwb42";
+    url = "http://libestr.adiscon.com/files/download/${name}.tar.gz";
+    sha256 = "0g3hmh3wxgjbn5g6cgy2l0ja806jd0ayp22bahcds3kmdq95wrdx";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = http://libestr.adiscon.com/;
+    description = "some essentials for string handling";
+    license = licenses.lgpl21;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ wkennington ];
   };
 }