mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gfortran,
|
|
giza,
|
|
hdf5,
|
|
cairo,
|
|
freetype,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "splash";
|
|
version = "3.10.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danieljprice";
|
|
repo = "splash";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-5ieJHUWZDGgsNj7U9tbdhtDIsN+wgbs03IxVd1xM+hw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
];
|
|
|
|
buildInputs = [
|
|
giza
|
|
cairo
|
|
freetype
|
|
hdf5
|
|
];
|
|
makeFlags = [
|
|
"SYSTEM=gfortran"
|
|
"GIZA_DIR=${giza}"
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
# Upstream's simplistic makefile doesn't even `mkdir $(PREFIX)`, so we help
|
|
# it:
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
'';
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "An interactive visualisation and plotting tool using kernel interpolation, mainly used for Smoothed Particle Hydrodynamics simulations";
|
|
inherit (finalAttrs.src.meta) homepage;
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = with lib.maintainers; [ doronbehar ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|