base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / xm / xmedcon / package.nix
blobb4170dfa228a7d4d60b12167cd879ca18255ad4a
1 { stdenv
2 , lib
3 , fetchurl
4 , gtk3
5 , glib
6 , pkg-config
7 , libpng
8 , zlib
9 , wrapGAppsHook3
12 stdenv.mkDerivation rec {
13   pname = "xmedcon";
14   version = "0.24.0";
16   src = fetchurl {
17     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
18     sha256 = "sha256-9NAAXGEVgpVPS7MB8FubnYUpkihE3lET/gep8QfPhB0=";
19   };
21   buildInputs = [
22     gtk3
23     glib
24     libpng
25     zlib
26   ];
28   nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
30   meta = with lib; {
31     description = "Open source toolkit for medical image conversion";
32     homepage = "https://xmedcon.sourceforge.net/";
33     license = licenses.lgpl2Plus;
34     maintainers = with maintainers; [ arianvp flokli ];
35     platforms = platforms.darwin ++ platforms.linux;
36   };