nixpkgs/pkgs/development/libraries/mypaint-brushes/1.0.nix

35 lines
676 B
Nix
Raw Normal View History

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