nixpkgs-suyu/pkgs/development/libraries/coordgenlibs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
561 B
Nix
Raw Normal View History

2021-02-01 18:20:34 +01:00
{ fetchFromGitHub
, lib
, stdenv
, boost
, zlib
, cmake
, maeparser
}:
stdenv.mkDerivation rec {
pname = "coordgenlibs";
2023-02-05 01:52:56 +01:00
version = "3.0.2";
2021-02-01 18:20:34 +01:00
src = fetchFromGitHub {
owner = "schrodinger";
repo = pname;
rev = "v${version}";
2023-02-05 01:52:56 +01:00
sha256 = "sha256-casFPNbPv9mkKpzfBENW7INClypuCO1L7clLGBXvSvI=";
2021-02-01 18:20:34 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost zlib maeparser ];
meta = with lib; {
description = "Schrodinger-developed 2D Coordinate Generation";
maintainers = [ maintainers.rmcgibbo ];
license = licenses.bsd3;
};
}