kallisto: Add updateScript (#333998)

This commit is contained in:
Colin 2024-11-15 08:36:29 +00:00 committed by GitHub
commit 26cf0447c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, autoconf, cmake, hdf5, zlib }:
{ lib, stdenv, fetchFromGitHub, autoconf, cmake, hdf5, zlib, nix-update-script }:
stdenv.mkDerivation rec {
pname = "kallisto";
@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
# Parallel build fails in some cases: https://github.com/pachterlab/kallisto/issues/160
enableParallelBuilding = false;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Program for quantifying abundances of transcripts from RNA-Seq data";
mainProgram = "kallisto";