coordgenlibs: init at 1.4.2
This commit is contained in:
29
pkgs/development/libraries/coordgenlibs/default.nix
Normal file
29
pkgs/development/libraries/coordgenlibs/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ fetchFromGitHub
|
||||
, lib
|
||||
, stdenv
|
||||
, boost
|
||||
, zlib
|
||||
, cmake
|
||||
, maeparser
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "coordgenlibs";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "schrodinger";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "18s3y9v6x246hapxy0cy4srnll4qqzqfx003j551l5f27b2ng8fn";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ boost zlib maeparser ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Schrodinger-developed 2D Coordinate Generation";
|
||||
maintainers = [ maintainers.rmcgibbo ];
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user