nixpkgs/pkgs/development/libraries/leveldb/default.nix

43 lines
976 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fixDarwinDylibNames, snappy }:
2013-05-11 06:52:32 +00:00
stdenv.mkDerivation rec {
pname = "leveldb";
version = "1.20";
2013-05-11 06:52:32 +00:00
2014-11-15 05:54:12 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "leveldb";
rev = "v${version}";
sha256 = "01kxga1hv4wp94agx5vl3ybxfw5klqrdsrb6p6ywvnjmjxm8322y";
2013-05-11 06:52:32 +00:00
};
buildInputs = [ snappy ];
2020-02-26 12:44:13 +00:00
nativeBuildInputs = []
++ stdenv.lib.optional stdenv.isDarwin [ fixDarwinDylibNames ];
2014-11-15 05:54:12 +00:00
buildPhase = ''
make all
2014-11-15 05:54:12 +00:00
'';
2013-05-11 06:52:32 +00:00
2020-02-26 12:44:13 +00:00
installPhase = "
2014-11-15 05:54:12 +00:00
mkdir -p $out/{bin,lib,include}
2014-11-15 05:54:12 +00:00
cp -r include $out
mkdir -p $out/include/leveldb/helpers
cp helpers/memenv/memenv.h $out/include/leveldb/helpers
cp out-shared/lib* $out/lib
cp out-static/lib* $out/lib
cp out-static/leveldbutil $out/bin
2013-05-11 06:52:32 +00:00
";
2014-11-15 05:54:12 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/google/leveldb";
description = "Fast and lightweight key/value database library by Google";
2014-11-15 05:54:12 +00:00
license = licenses.bsd3;
platforms = platforms.all;
2013-05-11 06:52:32 +00:00
};
}