-
-
Save samrose/767293d773f73f58dc2a177b8f2069f6 to your computer and use it in GitHub Desktop.
scylla.nix
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
with import <nixpkgs> {}; | |
#{stdenv, fetchFromGitHub, python, ninja}: | |
stdenv.mkDerivation rec { | |
name = "scylla-${version}"; | |
version = "2.1.0"; | |
src = fetchgit { | |
url = "https://github.com/scylladb/scylla"; | |
rev = "58b90ceee001474551a2d98937e26662d8e8e1c8"; | |
sha256 = "0hq3qf9ik9h3fq9pd76raz8gwjgnhrymabs9yrb7qqcd3mpfr012"; | |
}; | |
nativeBuildInputs = [ python3 pkgconfig boost systemd git ]; | |
buildInputs = [ jsoncpp libyamlcpp ]; | |
configurePhase = '' | |
python configure.py | |
''; | |
enableParallelBuilding = true; | |
meta = with stdenv.lib; { | |
homepage = https://www.scylladb.com; | |
description = "High performance cassandra compatible distributed database"; | |
platforms = platforms.unix; | |
license = licenses.agpl3; | |
maintainers = []; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment