1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ bionix , nixpkgs , flags ? null }: input: with nixpkgs; with lib; with bionix.types; assert (matchFiletype "samtools-dict" { fa = _: true; } input); stdenv.mkDerivation { name = "samtools-dict"; buildInputs = [ samtools ]; buildCommand = '' samtools dict ${optionalString (flags != null) flags} ${input} > $out ''; }