tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
sparsehash: 2.0.2 -> 2.0.3
Pascal Wittmann
10 years ago
dd30fcd3
15029ff4
+10
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
sparsehash
default.nix
+10
-7
pkgs/development/libraries/sparsehash/default.nix
···
1
1
-
{ stdenv, fetchurl }:
1
1
+
{ stdenv, fetchFromGitHub }:
2
2
3
3
-
stdenv.mkDerivation {
4
4
-
name = "sparsehash-2.0.2";
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "sparsehash-2.0.3";
5
5
6
6
-
src = fetchurl {
7
7
-
url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz;
8
8
-
sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif";
6
6
+
src = fetchFromGitHub {
7
7
+
owner = "sparsehash";
8
8
+
repo = "sparsehash";
9
9
+
rev = name;
10
10
+
sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na";
9
11
};
10
12
11
13
meta = with stdenv.lib; {
12
12
-
homepage = "http://code.google.com/p/sparsehash/";
14
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
18
+
maintainers = with maintainers; [ pSub ];
16
19
};
17
20
}