maeparser: init at 1.2.4
This commit is contained in:
parent
e90ec60e33
commit
947ccc54ae
28
pkgs/development/libraries/maeparser/default.nix
Normal file
28
pkgs/development/libraries/maeparser/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ fetchFromGitHub
|
||||
, lib
|
||||
, stdenv
|
||||
, boost
|
||||
, zlib
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "maeparser";
|
||||
version = "1.2.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "schrodinger";
|
||||
repo = "maeparser";
|
||||
rev = "v${version}";
|
||||
sha256 = "1qzp8d58ksy88y4fx1b0x65wycslm7zxzbb8ns28gkjh12xpzhwz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ boost zlib ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "maestro file parser";
|
||||
maintainers = [ maintainers.rmcgibbo ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -6033,6 +6033,8 @@ in
|
||||
|
||||
madlang = haskell.lib.justStaticExecutables haskellPackages.madlang;
|
||||
|
||||
maeparser = callPackage ../development/libraries/maeparser { };
|
||||
|
||||
mailcheck = callPackage ../applications/networking/mailreaders/mailcheck { };
|
||||
|
||||
maildrop = callPackage ../tools/networking/maildrop { };
|
||||
|
Loading…
Reference in New Issue
Block a user