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

26
pkgs/tampi/git.nix Normal file
View File

@@ -0,0 +1,26 @@
{
stdenv
, fetchurl
, automake
, autoconf
, libtool
, gnumake
, boost
, mpi
, gcc
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "tampi";
version = "${src.shortRev}";
enableParallelBuilding = true;
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
dontDisableStatic = true;
makeFlags = [ "V=1" ];
src = builtins.fetchGit {
url = "ssh://git@bscpm03.bsc.es/interoperability/tampi";
ref = "master";
};
hardeningDisable = [ "all" ];
}