lol
0
fork

Configure Feed

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

libestr: 0.1.9 -> 0.1.10

+14 -4
+14 -4
pkgs/development/libraries/libestr/default.nix
··· 1 1 { stdenv, fetchurl }: 2 - stdenv.mkDerivation { 3 - name = "libestr-0.1.9"; 2 + 3 + stdenv.mkDerivation rec { 4 + name = "libestr-0.1.10"; 5 + 4 6 src = fetchurl { 5 - url = http://libestr.adiscon.com/files/download/libestr-0.1.9.tar.gz; 6 - sha256 = "06km9mlw5qq4aa7503l81d0qcghzl0n3lh0z41r1xjpa04nnwb42"; 7 + url = "http://libestr.adiscon.com/files/download/${name}.tar.gz"; 8 + sha256 = "0g3hmh3wxgjbn5g6cgy2l0ja806jd0ayp22bahcds3kmdq95wrdx"; 9 + }; 10 + 11 + meta = with stdenv.lib; { 12 + homepage = http://libestr.adiscon.com/; 13 + description = "some essentials for string handling"; 14 + license = licenses.lgpl21; 15 + platforms = platforms.all; 16 + maintainers = with maintainers; [ wkennington ]; 7 17 }; 8 18 }