nagiosPlugins.check_ssl_cert: 2.85.1 -> 2.86.0 (#379244)
[NixPkgs.git] / pkgs / by-name / co / coin-utils / package.nix
blob45681a7213570a48e270ee4d1c9c83fd340361fc
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   fetchpatch,
6 }:
8 stdenv.mkDerivation rec {
9   version = "2.11.10";
10   pname = "coinutils";
12   src = fetchFromGitHub {
13     owner = "coin-or";
14     repo = "CoinUtils";
15     rev = "releases/${version}";
16     hash = "sha256-Rbm45HRbRKQ6Cdup+gvKJ1xkK1HKG3irR5AIjhLer7g=";
17   };
19   patches = [
20     (fetchpatch {
21       url = "https://github.com/coin-or/CoinUtils/commit/1700ed92c2bc1562aabe65dee3b4885bd5c87fb9.patch";
22       stripLen = 1;
23       extraPrefix = "CoinUtils/";
24       hash = "sha256-8S6XteZvoJlL+5MWiOrW7HXsdcnzpuEFTyzX9qg7OUY=";
25     })
26   ];
28   doCheck = true;
30   meta = with lib; {
31     license = licenses.epl20;
32     homepage = "https://github.com/coin-or/CoinUtils";
33     description = "Collection of classes and helper functions that are generally useful to multiple COIN-OR projects";
34     maintainers = with maintainers; [ tmarkus ];
35   };