sambamba: 0.7.1 -> 0.8.0

Getting rid of dmd dependency and compile with ldc

authored by

Thomas Mader and committed by
adisbladis
09acdfde 6cfbedca

+4 -4
+4 -4
pkgs/applications/science/biology/sambamba/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python3, which, dmd, ldc, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "sambamba"; 5 - version = "0.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "biod"; 9 repo = "sambamba"; 10 rev = "v${version}"; 11 - sha256 = "0k5wy06zrbsc40x6answgz7rz2phadyqwlhi9nqxbfqanbg9kq20"; 12 fetchSubmodules = true; 13 }; 14 15 - nativeBuildInputs = [ which python3 dmd ldc ]; 16 buildInputs = [ zlib ]; 17 18 # Upstream's install target is broken; copy manually
··· 1 + { lib, stdenv, fetchFromGitHub, python3, which, ldc, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "sambamba"; 5 + version = "0.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "biod"; 9 repo = "sambamba"; 10 rev = "v${version}"; 11 + sha256 = "sha256:0kx5a0fmvv9ldz2hnh7qavgf7711kqc73zxf51k4cca4hr58zxr9"; 12 fetchSubmodules = true; 13 }; 14 15 + nativeBuildInputs = [ which python3 ldc ]; 16 buildInputs = [ zlib ]; 17 18 # Upstream's install target is broken; copy manually