diff options
author | Justin Bedo <cu@cua0.org> | 2021-02-03 11:48:25 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2021-02-03 11:48:25 +1100 |
commit | 0985153cd011b412c0e2e34c99acdefca1399cc8 (patch) | |
tree | 2f717cb0de216fddff4172f4d51880969e579c5b /tools | |
parent | c392e1c3700548ee634485ce7460cf0f5a978a25 (diff) |
bwa-mem2: 2.0 -> 2.1
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bwa-mem2-app.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bwa-mem2-app.nix b/tools/bwa-mem2-app.nix index b303485..49f4af3 100644 --- a/tools/bwa-mem2-app.nix +++ b/tools/bwa-mem2-app.nix @@ -1,18 +1,18 @@ { clangStdenv, fetchFromGitHub, zlib }: clangStdenv.mkDerivation rec { pname = "bwa-mem2"; - version = "2.0"; + version = "2.1"; src = fetchFromGitHub { fetchSubmodules = true; owner = "bwa-mem2"; repo = "bwa-mem2"; rev = "v${version}"; - sha256 = "0q5wqal0nfxd3yfbmxahyaiqqmsrrplnwhplcjvz1xzw7bxwwnnj"; + sha256 = "sha256-T0nkO+NehAMFuwGi7HrQxq57gEsA16TlEWa2SHerxV4="; }; buildInputs = [ zlib ]; installPhase = '' mkdir -p $out/bin - cp bwa-mem2 $out/bin + cp bwa-mem2 bwa-mem2.* $out/bin ''; disableHardening = [ "pie" ]; } |