7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
26 lines
734 B
Nix
26 lines
734 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gcc, gcc-unwrapped }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.3";
|
|
pname = "messer-slim";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MesserLab";
|
|
repo = "SLiM";
|
|
rev = "v${version}";
|
|
hash = "sha256-Hgh1ianEdITRUIDKLiLW32kQlPlXKIfN4PSv3cOXTGI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake gcc gcc-unwrapped ];
|
|
|
|
cmakeFlags = [ "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar"
|
|
"-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ];
|
|
|
|
meta = {
|
|
description = "Evolutionary simulation framework";
|
|
homepage = "https://messerlab.org/slim/";
|
|
license = with lib.licenses; [ gpl3 ];
|
|
maintainers = with lib.maintainers; [ bzizou ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|