streamlink: 7.1.1 -> 7.1.2 (#373269)
[NixPkgs.git] / pkgs / by-name / lw / lwgrp / package.nix
bloba043c27d85125da20374912b4b81d03fb85ce255
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   mpi,
6   autoreconfHook,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "lwgrp";
11   version = "1.0.6";
13   src = fetchFromGitHub {
14     owner = "LLNL";
15     repo = "lwgrp";
16     rev = "v${version}";
17     hash = "sha256-ZpxxcCqK+qdvnCvobeBV6htRF8wThiQgVFYgEigqmIE=";
18   };
20   outputs = [
21     "out"
22     "dev"
23   ];
25   nativeBuildInputs = [ autoreconfHook ];
27   propagatedBuildInputs = [ mpi ];
29   meta = with lib; {
30     description = "Data structures and operations to group MPI processes as an ordered set";
31     homepage = "https://github.com/LLNL/lwgrp";
32     platforms = platforms.linux;
33     license = licenses.bsd3;
34     maintainers = [ maintainers.markuskowa ];
35   };