Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ fetchFromGitHub 2, lib 3, stdenv 4, boost 5, zlib 6, cmake 7, maeparser 8}: 9 10stdenv.mkDerivation rec { 11 pname = "coordgenlibs"; 12 version = "3.0.2"; 13 14 src = fetchFromGitHub { 15 owner = "schrodinger"; 16 repo = pname; 17 rev = "v${version}"; 18 sha256 = "sha256-casFPNbPv9mkKpzfBENW7INClypuCO1L7clLGBXvSvI="; 19 }; 20 21 nativeBuildInputs = [ cmake ]; 22 buildInputs = [ boost zlib maeparser ]; 23 24 meta = with lib; { 25 description = "Schrodinger-developed 2D Coordinate Generation"; 26 maintainers = [ maintainers.rmcgibbo ]; 27 license = licenses.bsd3; 28 }; 29}