Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / graphics / mtpaint / default.nix
blob740f9c7cb193f32b9cd81d90351ea37b9b54e383
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 = "A 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   };