Archived
1
0
forked from rarias/bscpkgs

Move packages from bsc/ to pkgs/

This commit is contained in:
2023-10-02 10:45:10 +02:00
parent 8fe7458969
commit 916e4f49a6
82 changed files with 27 additions and 27 deletions

29
pkgs/tampi/default.nix Normal file
View File

@@ -0,0 +1,29 @@
{
stdenv
, fetchFromGitHub
, automake
, autoconf
, libtool
, gnumake
, boost
, mpi
, gcc
, autoreconfHook
}:
stdenv.mkDerivation rec {
version = "2.0";
pname = "tampi";
enableParallelBuilding = true;
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
dontDisableStatic = true;
src = fetchFromGitHub {
owner = "bsc-pm";
repo = "tampi";
rev = "v${version}";
sha256 = "sha256-m0LDgP4pfUwavUaagcCsZ/ZHbnWBZdtHtGq108btGKM=";
};
hardeningDisable = [ "all" ];
}