0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

sparsehash: 2.0.2 -> 2.0.3

This commit is contained in:
Pascal Wittmann 2016-03-19 13:51:21 +01:00
parent 15029ff44a
commit dd30fcd30a

View file

@ -1,17 +1,20 @@
{ stdenv, fetchurl }: { stdenv, fetchFromGitHub }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "sparsehash-2.0.2"; name = "sparsehash-2.0.3";
src = fetchurl { src = fetchFromGitHub {
url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz; owner = "sparsehash";
sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif"; repo = "sparsehash";
rev = name;
sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "http://code.google.com/p/sparsehash/"; homepage = http://code.google.com/p/sparsehash/;
description = "An extremely memory-efficient hash_map implementation"; description = "An extremely memory-efficient hash_map implementation";
platforms = platforms.all; platforms = platforms.all;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ pSub ];
}; };
} }