depot/pkgs/development/libraries/mypaint-brushes/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

34 lines
676 B
Nix

{ lib, stdenv
, autoconf
, automake
, fetchFromGitHub
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "mypaint-brushes";
version = "2.0.2";
src = fetchFromGitHub {
owner = "mypaint";
repo = pname;
rev = "v${version}";
sha256 = "0kcqz13vzpy24dhmrx9hbs6s7hqb8y305vciznm15h277sabpmw9";
};
nativeBuildInputs = [
autoconf
automake
pkg-config
];
preConfigure = "./autogen.sh";
meta = with 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;
};
}