electron_32: fix log spam when building on aarch64-linux (#378988)
[NixPkgs.git] / pkgs / by-name / xm / xmedcon / package.nix
blob2528a860e905f06d95f6f7ea6e3fee28eb1ff321
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.25.0";
16   src = fetchurl {
17     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
18     sha256 = "sha256-UKM68H2AGfe4+keW/0ZxQwPsF2tTAZQCEZT9var+MHs=";
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   };