minia: Initial packaging
This commit is contained in:
@@ -22,6 +22,8 @@ self: super: pkgs: with pkgs; {
|
||||
|
||||
#meraculous = callPackage ./meraculous.nix { let stdenv49 = overrideCC stdenv gcc49; in stdenv = stdenv49; boost = boost159.override { stdenv = stdenv49 }; };
|
||||
|
||||
minia = callPackage ./minia.nix { };
|
||||
|
||||
inherit (callPackage ./opengl/default.nix { inherit super; }) mesa_noglu;
|
||||
|
||||
inherit (callPackages ./octopus/octopus.nix { stdenv = overrideCC stdenv gcc5; gfortran = gfortran5; }) octopus72;
|
||||
|
||||
25
pkgs/minia.nix
Normal file
25
pkgs/minia.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "minia-${version}";
|
||||
version = "3.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GATB";
|
||||
repo = "minia";
|
||||
fetchSubmodules = true;
|
||||
rev = "v${version}";
|
||||
sha256 = "1kziky9hgys3fp8891vx2hskwg7zw49fbnq9zvc7pwmc7qskasli";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
cmake
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with stdenv.licenses; {
|
||||
description = "A short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.";
|
||||
homepage = https://github.com/GATB/minia;
|
||||
license = gpl3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user