lol

sparsehash: 2.0.2 -> 2.0.3

+10 -7
+10 -7
pkgs/development/libraries/sparsehash/default.nix
··· 1 - { stdenv, fetchurl }: 1 + { stdenv, fetchFromGitHub }: 2 2 3 - stdenv.mkDerivation { 4 - name = "sparsehash-2.0.2"; 3 + stdenv.mkDerivation rec { 4 + name = "sparsehash-2.0.3"; 5 5 6 - src = fetchurl { 7 - url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz; 8 - sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif"; 6 + src = fetchFromGitHub { 7 + owner = "sparsehash"; 8 + repo = "sparsehash"; 9 + rev = name; 10 + sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na"; 9 11 }; 10 12 11 13 meta = with stdenv.lib; { 12 - homepage = "http://code.google.com/p/sparsehash/"; 14 + homepage = http://code.google.com/p/sparsehash/; 13 15 description = "An extremely memory-efficient hash_map implementation"; 14 16 platforms = platforms.all; 15 17 license = licenses.bsd3; 18 + maintainers = with maintainers; [ pSub ]; 16 19 }; 17 20 }