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

24
pkgs/sonar/default.nix Normal file
View File

@@ -0,0 +1,24 @@
{
stdenv
, autoreconfHook
, ovni
, mpi
}:
stdenv.mkDerivation rec {
pname = "sonar";
version = "0.1.0";
src = builtins.fetchGit {
url = "ssh://git@bscpm03.bsc.es/ovni/sonar";
ref = version;
rev = "1299731b56addc18f530f7327f62267624c4363a";
};
hardeningDisable = [ "all" ];
dontStrip = true;
configureFlags = [ "--with-ovni=${ovni}" ];
buildInputs = [
autoreconfHook
ovni
mpi
];
}