mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
mongoose: init at 2.0.4
This commit is contained in:
parent
40ae28791f
commit
b4e6293a8d
30
pkgs/development/libraries/science/math/mongoose/default.nix
Normal file
30
pkgs/development/libraries/science/math/mongoose/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "mongoose";
|
||||||
|
version = "2.0.4";
|
||||||
|
|
||||||
|
outputs = [ "bin" "out" "dev" ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ScottKolo";
|
||||||
|
repo = "Mongoose";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ymwd4n8p8s0ndh1vcbmjcsm0x2cc2b7v3baww5y6as12873bcrh";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Graph Coarsening and Partitioning Library";
|
||||||
|
homepage = "https://github.com/ScottKolo/Mongoose";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [];
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
@ -25152,6 +25152,8 @@ in
|
|||||||
|
|
||||||
mongoc = callPackage ../development/libraries/mongoc { };
|
mongoc = callPackage ../development/libraries/mongoc { };
|
||||||
|
|
||||||
|
mongoose = callPackage ../development/libraries/science/math/mongoose {};
|
||||||
|
|
||||||
morph = callPackage ../tools/package-management/morph { };
|
morph = callPackage ../tools/package-management/morph { };
|
||||||
|
|
||||||
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
|
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
|
||||||
|
Loading…
Reference in New Issue
Block a user