sambamba: 0.7.1 -> 0.8.0
Getting rid of dmd dependency and compile with ldc
This commit is contained in:
parent
6cfbedcac2
commit
09acdfde94
1 changed files with 4 additions and 4 deletions
|
@ -1,18 +1,18 @@
|
|||
{ lib, stdenv, fetchFromGitHub, python3, which, dmd, ldc, zlib }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3, which, ldc, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sambamba";
|
||||
version = "0.7.1";
|
||||
version = "0.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "biod";
|
||||
repo = "sambamba";
|
||||
rev = "v${version}";
|
||||
sha256 = "0k5wy06zrbsc40x6answgz7rz2phadyqwlhi9nqxbfqanbg9kq20";
|
||||
sha256 = "sha256:0kx5a0fmvv9ldz2hnh7qavgf7711kqc73zxf51k4cca4hr58zxr9";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ which python3 dmd ldc ];
|
||||
nativeBuildInputs = [ which python3 ldc ];
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
# Upstream's install target is broken; copy manually
|
||||
|
|
Loading…
Reference in a new issue