libmypaint: init at 1.3.0
This commit is contained in:
parent
5fc5a9f399
commit
407721b73b
2 changed files with 34 additions and 0 deletions
32
pkgs/development/libraries/libmypaint/default.nix
Normal file
32
pkgs/development/libraries/libmypaint/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -9434,6 +9434,8 @@ with pkgs;
|
|||
|
||||
libmsgpack = callPackage ../development/libraries/libmsgpack { };
|
||||
|
||||
libmypaint = callPackage ../development/libraries/libmypaint { };
|
||||
|
||||
libmysqlconnectorcpp = callPackage ../development/libraries/libmysqlconnectorcpp {
|
||||
mysql = mysql57;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue