Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / mypaint-brushes / default.nix
blobacdee52b85ef75833e71b5b42c02ce380618c030
1 { lib, stdenv
2 , autoconf
3 , automake
4 , fetchFromGitHub
5 , pkg-config
6 }:
8 stdenv.mkDerivation rec {
9   pname = "mypaint-brushes";
10   version = "2.0.2";
12   src = fetchFromGitHub {
13     owner = "mypaint";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "0kcqz13vzpy24dhmrx9hbs6s7hqb8y305vciznm15h277sabpmw9";
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   };