Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
769 B
Nix
45 lines
769 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
gtk3,
|
|
glib,
|
|
pkg-config,
|
|
libpng,
|
|
zlib,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xmedcon";
|
|
version = "0.25.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-9VrTQP614tIrmZRm9bSpmlXqCbMPzqvhv222eFiKS4M=";
|
|
};
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
libpng
|
|
zlib
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Open source toolkit for medical image conversion";
|
|
homepage = "https://xmedcon.sourceforge.net/";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [
|
|
arianvp
|
|
flokli
|
|
];
|
|
platforms = platforms.darwin ++ platforms.linux;
|
|
};
|
|
}
|