3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/biology/messer-slim/default.nix

27 lines
739 B
Nix
Raw Normal View History

2021-12-13 14:34:57 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, gcc, gcc-unwrapped }:
2019-02-28 14:00:37 +00:00
stdenv.mkDerivation rec {
2021-12-30 20:32:56 +00:00
version = "3.7";
pname = "messer-slim";
2019-02-28 14:00:37 +00:00
2021-12-13 14:34:57 +00:00
src = fetchFromGitHub {
owner = "MesserLab";
repo = "SLiM";
rev = "v${version}";
2021-12-30 20:32:56 +00:00
sha256 = "sha256-YEIpdW7W/Dezezh9r6q0fLkF4zb+oH36bAZ/YYqkr8k=";
2019-02-28 14:00:37 +00:00
};
nativeBuildInputs = [ cmake gcc gcc-unwrapped ];
cmakeFlags = [ "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar"
2019-02-28 14:00:37 +00:00
"-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ];
meta = {
description = "An evolutionary simulation framework";
homepage = "https://messerlab.org/slim/";
2021-01-15 13:21:58 +00:00
license = with lib.licenses; [ gpl3 ];
maintainers = with lib.maintainers; [ bzizou ];
platforms = lib.platforms.all;
2019-02-28 14:00:37 +00:00
};
}