mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
42 lines
764 B
Nix
42 lines
764 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
isa-l,
|
|
zlib,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "strobealign";
|
|
version = "0.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ksahlin";
|
|
repo = "strobealign";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-ah21ptyfZbgdJrtCCftYhGh1hfcJ9JpXNsXUp8pZDJw=";
|
|
};
|
|
|
|
patches = [
|
|
./include-cstdint.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
zlib
|
|
isa-l
|
|
];
|
|
|
|
meta = {
|
|
description = "Read aligner for short reads";
|
|
mainProgram = "strobealign";
|
|
license = lib.licenses.mit;
|
|
homepage = "https://github.com/ksahlin/strobealign";
|
|
maintainers = [ lib.maintainers.jbedo ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|