depot/third_party/nixpkgs/pkgs/development/libraries/mypaint-brushes/1.0.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

34 lines
677 B
Nix

{ stdenv
, autoconf
, automake
, fetchFromGitHub
, pkgconfig
}:
stdenv.mkDerivation rec {
pname = "mypaint-brushes";
version = "1.3.1";
src = fetchFromGitHub {
owner = "mypaint";
repo = pname;
rev = "v${version}";
sha256 = "1c95l1vfz7sbrdlzrbz7h1p6s1k113kyjfd9wfnxlm0p6562cz3j";
};
nativeBuildInputs = [
autoconf
automake
pkgconfig
];
preConfigure = "./autogen.sh";
meta = with stdenv.lib; {
homepage = "http://mypaint.org/";
description = "Brushes used by MyPaint and other software using libmypaint.";
license = licenses.cc0;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix;
};
}