Merge pull request #115206 from tadfisher/maxflow
maxflow: init at 3.0.5
This commit is contained in:
commit
35648276c8
2 changed files with 29 additions and 0 deletions
27
pkgs/development/libraries/maxflow/default.nix
Normal file
27
pkgs/development/libraries/maxflow/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "maxflow";
|
||||
version = "3.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gerddie";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-a84SxGMnfBEaoMEeeIFffTOtErSN5yzZBrAUDjkalGY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Software for computing mincut/maxflow in a graph";
|
||||
homepage = "https://github.com/gerddie/maxflow";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.tadfisher ];
|
||||
};
|
||||
}
|
|
@ -15978,6 +15978,8 @@ in
|
|||
|
||||
matterhorn = haskell.lib.justStaticExecutables haskellPackages.matterhorn;
|
||||
|
||||
maxflow = callPackage ../development/libraries/maxflow { };
|
||||
|
||||
mbedtls = callPackage ../development/libraries/mbedtls { };
|
||||
|
||||
mdctags = callPackage ../development/tools/misc/mdctags { };
|
||||
|
|
Loading…
Reference in a new issue