mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ocamlPackages.setcore: init at 1.0.1
This commit is contained in:
parent
aa7c021440
commit
eb1efb718c
29
pkgs/development/ocaml-modules/setcore/default.nix
Normal file
29
pkgs/development/ocaml-modules/setcore/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, buildDunePackage, fetchFromGitHub, autoconf }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "setcore";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "UnixJunkie";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1yn660gxk2ccp7lbdq9v6pjz1c3pm08s9dl9k9l5492ld6bx8fxc";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
autoconf
|
||||
autoheader
|
||||
'';
|
||||
|
||||
buildInputs = [ autoconf ];
|
||||
|
||||
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "strictoverflow";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Generalized map/reduce for multicore computing";
|
||||
maintainers = [ maintainers.bcdarwin ];
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
}
|
@ -755,6 +755,8 @@ let
|
||||
|
||||
sedlex = callPackage ../development/ocaml-modules/sedlex { };
|
||||
|
||||
setcore = callPackage ../development/ocaml-modules/setcore { };
|
||||
|
||||
sodium = callPackage ../development/ocaml-modules/sodium { };
|
||||
|
||||
spelll = callPackage ../development/ocaml-modules/spelll { };
|
||||
|
Loading…
Reference in New Issue
Block a user