biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / mtpaint / default.nix
blob991eb8925f37938bc10973f8dc65fb02199f9d18
1 { lib, stdenv, fetchFromGitHub
2 , pkg-config
3 , freetype, giflib, gtk3, lcms2, libjpeg, libpng, libtiff, openjpeg, gifsicle
4 }:
6 stdenv.mkDerivation rec {
7   pname  = "mtPaint";
8   version = "3.50.01";
10   src = fetchFromGitHub {
11     owner = "wjaguar";
12     repo = "mtPaint";
13     rev = "a4675ff5cd9fcd57d291444cb9f332b48f11243f";
14     sha256 = "04wqxz8i655gz5rnz90cksy8v6m2jhcn1j8rzhqpp5xhawlmq24y";
15   };
17   nativeBuildInputs = [ pkg-config ];
18   buildInputs = [
19     freetype giflib gtk3 lcms2 libjpeg libpng libtiff openjpeg gifsicle
20   ];
22   configureFlags = [ "gtk3" "intl" "man" ];
24   meta = {
25     description = "Simple GTK painting program";
26     longDescription = ''
27       mtPaint is a simple GTK painting program designed for
28       creating icons and pixel based artwork.  It can edit indexed palette
29       or 24 bit RGB images and offers basic painting and palette manipulation
30       tools. It also has several other more powerful features such as channels,
31       layers and animation.
32       Due to its simplicity and lack of dependencies it runs well on
33       GNU/Linux, Windows and older PC hardware.
34     '';
35     homepage = "https://mtpaint.sourceforge.net/";
36     license = lib.licenses.gpl3Plus;
37     platforms = lib.platforms.linux;
38     maintainers = [ lib.maintainers.vklquevs ];
39     mainProgram = "mtpaint";
40   };