Merge pull request #1453 from ttuegel/clementine

Add clementine-1.2.1 and dependencies
This commit is contained in:
Domen Kožar
2014-01-02 14:21:18 -08:00
4 changed files with 83 additions and 0 deletions

View File

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