Last active
November 18, 2022 02:41
-
-
Save maxux/e456cc89b3b254ebfb3e8c489410e4c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchFromGitHub, lib }: | |
stdenv.mkDerivation rec { | |
pname = "zdb"; | |
version = "development-v2"; | |
src = fetchFromGitHub { | |
owner = "threefoldtech"; | |
repo = "0-db"; | |
rev = version; | |
sha256 = "k2EpmdA6Ps/AE37Fkg516PRrKlnJUAwPYkz2TYn+M9U="; | |
}; | |
doCheck = true; | |
buildPhase = '' | |
make release | |
''; | |
installPhase = '' | |
mkdir -p $out/bin | |
cp zdbd/zdb $out/bin | |
''; | |
meta = with lib; { | |
description = "Fast write ahead persistent redis protocol key-value store"; | |
longDescription = '' | |
0-db (zdb) is a super fast and efficient key-value store which makes data persistant inside an always append datafile, with namespaces support and data offloading. | |
''; | |
homepage = "https://github.com/threefoldtech/0-db"; | |
changelog = "https://github.com/threefoldtech/0-db"; | |
maintainer = maintainers.maxux; | |
license = licenses.asl20; | |
platforms = platforms.all; | |
}; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
pkgs = import <nixpkgs> {}; | |
in | |
pkgs.stdenv.mkDerivation rec { | |
pname = "zdb"; | |
version = "development-v2"; | |
src = pkgs.fetchFromGitHub { | |
owner = "threefoldtech"; | |
repo = "0-db"; | |
rev = version; | |
sha256 = "k2EpmdA6Ps/AE37Fkg516PRrKlnJUAwPYkz2TYn+M9U="; | |
}; | |
doCheck = true; | |
buildPhase = '' | |
make release | |
''; | |
installPhase = '' | |
mkdir -p $out/bin | |
cp zdbd/zdb $out/bin | |
''; | |
meta = with pkgs.lib; { | |
description = "Fast write ahead persistent redis protocol key-value store"; | |
longDescription = '' | |
0-db (zdb) is a super fast and efficient key-value store which makes data persistant inside an always append datafile, with namespaces support and data offloading. | |
''; | |
homepage = "https://github.com/threefoldtech/0-db"; | |
changelog = "https://github.com/threefoldtech/0-db"; | |
license = pkgs.lib.licenses.asl20; | |
platforms = platforms.all; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment