Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / mypaint-brushes / 1.0.nix
blob73acfd9287f713303d4252910ed8618ba7239ab2
1 { lib, stdenv
2 , autoconf
3 , automake
4 , fetchFromGitHub
5 , pkg-config
6 }:
8 stdenv.mkDerivation rec {
9   pname = "mypaint-brushes";
10   version = "1.3.1";
12   src = fetchFromGitHub {
13     owner = "mypaint";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "1c95l1vfz7sbrdlzrbz7h1p6s1k113kyjfd9wfnxlm0p6562cz3j";
17   };
19   nativeBuildInputs = [
20     autoconf
21     automake
22     pkg-config
23   ];
25   preConfigure = "./autogen.sh";
27   meta = with lib; {
28     homepage = "http://mypaint.org/";
29     description = "Brushes used by MyPaint and other software using libmypaint";
30     license = licenses.cc0;
31     maintainers = with maintainers; [ jtojnar ];
32     platforms = platforms.unix;
33   };