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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sambamba";
|
pname = "sambamba";
|
||||||
version = "0.7.1";
|
version = "0.8.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "biod";
|
owner = "biod";
|
||||||
repo = "sambamba";
|
repo = "sambamba";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0k5wy06zrbsc40x6answgz7rz2phadyqwlhi9nqxbfqanbg9kq20";
|
sha256 = "sha256:0kx5a0fmvv9ldz2hnh7qavgf7711kqc73zxf51k4cca4hr58zxr9";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ which python3 dmd ldc ];
|
nativeBuildInputs = [ which python3 ldc ];
|
||||||
buildInputs = [ zlib ];
|
buildInputs = [ zlib ];
|
||||||
|
|
||||||
# Upstream's install target is broken; copy manually
|
# Upstream's install target is broken; copy manually
|
||||||
|
|
Loading…
Reference in a new issue