mongoose: init at 2.0.4

This commit is contained in:
Jan Tojnar 2020-02-11 20:40:00 +01:00
parent 40ae28791f
commit b4e6293a8d
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 32 additions and 0 deletions

View 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;
};
}

View File

@ -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 { };