forked from rarias/bscpkgs
Initial test packages
This commit is contained in:
29
bsc/tampi/default.nix
Normal file
29
bsc/tampi/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
stdenv
|
||||
, fetchurl
|
||||
, automake
|
||||
, autoconf
|
||||
, libtool
|
||||
, gnumake
|
||||
, boost
|
||||
, mpi
|
||||
, gcc }:
|
||||
|
||||
let
|
||||
inherit stdenv fetchurl;
|
||||
version = "1.0.1";
|
||||
in
|
||||
{
|
||||
hello = stdenv.mkDerivation rec {
|
||||
name = "tampi-${version}";
|
||||
buildInputs = [ automake autoconf libtool gnumake boost mpi gcc ];
|
||||
#hardeningDisable = [ "format" ];
|
||||
preConfigure = ''
|
||||
autoreconf -fiv
|
||||
'';
|
||||
src = fetchurl {
|
||||
url = "https://github.com/bsc-pm/tampi/archive/v${version}.tar.gz";
|
||||
sha256 = "8608a74325939d2a6b56e82f7f6788efbc67731e2d64793bac69475f5b4b9704";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user