summary refs log tree commit diff
path: root/pkgs/development/libraries/libmypaint/default.nix
blob: 0583d94ef7f454bbddb0880cd69f4ae223ffe283 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{stdenv, autoconf, automake, fetchFromGitHub, glib, intltool, json_c, libtool, pkgconfig}:

let
  version = "1.3.0";
in stdenv.mkDerivation rec {
  name = "libmypaint-${version}";

  src = fetchFromGitHub {
    owner = "mypaint";
    repo = "libmypaint";
    rev = "v${version}";
    sha256 = "0b7aynr6ggigwhjkfzi8x3dwz15blj4grkg9hysbgjh6lvzpy9jc";
  };

  nativeBuildInputs = [ autoconf automake intltool libtool pkgconfig ];

  buildInputs = [ glib ];

  propagatedBuildInputs = [ json_c ]; # for libmypaint.pc

  doCheck = true;

  preConfigure = "./autogen.sh";

  meta = with stdenv.lib; {
    homepage = http://mypaint.org/;
    description = "Library for making brushstrokes which is used by MyPaint and other projects";
    license = licenses.isc;
    maintainers = with maintainers; [ goibhniu jtojnar ];
    platforms = platforms.unix;
  };
}