diff options
author | tv <tv@krebsco.de> | 2017-08-01 20:46:32 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-08-01 20:46:32 +0200 |
commit | bcd8c5a9661634a53c88029fc9028e1dbf2228b2 (patch) | |
tree | ab57e3daba13ff1466b4f082b0685bdc44c2753c | |
parent | ad0f78278968b3cd0656a72be8db9a287bd6398a (diff) |
tv tarantool: RIP
-rw-r--r-- | krebs/5pkgs/simple/tarantool/default.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/krebs/5pkgs/simple/tarantool/default.nix b/krebs/5pkgs/simple/tarantool/default.nix deleted file mode 100644 index 9e22fd4f3..000000000 --- a/krebs/5pkgs/simple/tarantool/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ stdenv, fetchgit, cmake, ncurses, openssl, readline, ... }: - -stdenv.mkDerivation rec { - name = "tarantool-1.7.1-164-g0fd0239"; - src = fetchgit { - url = https://github.com/tarantool/tarantool; - rev = builtins.elemAt (builtins.match ".*-g([0-9a-f]+)" name) 0; - sha256 = "1jnaiizbl9j4a8vsihqx75iqa9bkh1kpwsyrgmim8ikiyzfw54dz"; - fetchSubmodules = true; - }; - buildInputs = [ - cmake - ncurses - openssl - readline - ]; - preConfigure = '' - echo ${(builtins.parseDrvName name).version} > VERSION - sed -i 's/NAMES termcap/NAMES ncurses/' cmake/FindTermcap.cmake - ''; -} |