depot/third_party/nixpkgs/pkgs/by-name/me/messer-slim/package.nix

39 lines
749 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;
};
}