mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 03:47:39 +00:00
dtcmp: init at 1.1.5
This commit is contained in:
parent
ab2e448dc4
commit
55a71be460
30
pkgs/by-name/dt/dtcmp/package.nix
Normal file
30
pkgs/by-name/dt/dtcmp/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, mpi, lwgrp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dtcmp";
|
||||
version = "1.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "LLNL";
|
||||
repo = "dtcmp";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Dc+c8JCc5D23CtpwiWkHCqngywEZXw7cYsRiSYiQdWk=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
buildInputs = [ lwgrp ];
|
||||
|
||||
configureFlags = [ "--with-lwgrp=${lib.getDev lwgrp}" ];
|
||||
|
||||
propagatedBuildInputs = [ mpi ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "MPI datatype comparison library";
|
||||
homepage = "https://github.com/LLNL/dtcmp";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.markuskowa ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user