nixpkgs/pkgs/by-name/xm/xmedcon/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
732 B
Nix
Raw Normal View History

{ stdenv
, lib
, fetchurl
, gtk3
, glib
, pkg-config
, libpng
, zlib
, wrapGAppsHook3
}:
stdenv.mkDerivation rec {
pname = "xmedcon";
2024-06-09 05:32:44 +00:00
version = "0.24.0";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
2024-06-09 05:32:44 +00:00
sha256 = "sha256-9NAAXGEVgpVPS7MB8FubnYUpkihE3lET/gep8QfPhB0=";
};
buildInputs = [
gtk3
glib
libpng
zlib
];
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
meta = with lib; {
description = "Open source toolkit for medical image conversion";
2023-08-22 17:43:26 +00:00
homepage = "https://xmedcon.sourceforge.net/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ arianvp flokli ];
platforms = platforms.darwin ++ platforms.linux;
};
}