Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 947ace2a1660
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c77a95dc0de0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 7, 2020

  1. mypaint-brushes: clean up

    jtojnar committed Feb 7, 2020
    Copy the full SHA
    c77a95d View commit details
Showing with 16 additions and 8 deletions.
  1. +16 −8 pkgs/development/libraries/mypaint-brushes/default.nix
24 changes: 16 additions & 8 deletions pkgs/development/libraries/mypaint-brushes/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{stdenv, fetchpatch, autoconf, automake, fetchFromGitHub, pkgconfig}:
{ stdenv
, fetchpatch
, autoconf
, automake
, fetchFromGitHub
, pkgconfig
}:

let
stdenv.mkDerivation rec {
pname = "mypaint-brushes";
version = "1.3.0";
in stdenv.mkDerivation {
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "Jehan";
owner = "mypaint";
repo = pname;
rev = "v${version}";
sha256 = "1iz89z6v2mp8j1lrf942k561s8311i3s34ap36wh4rybb2lq15m0";
};

nativeBuildInputs = [ autoconf automake pkgconfig ];

patches = [
# build with automake 1.16
(fetchpatch {
@@ -23,10 +25,16 @@ in stdenv.mkDerivation {
})
];

nativeBuildInputs = [
autoconf
automake
pkgconfig
];

preConfigure = "./autogen.sh";

meta = with stdenv.lib; {
homepage = http://mypaint.org/;
homepage = "http://mypaint.org/";
description = "Brushes used by MyPaint and other software using libmypaint.";
license = licenses.cc0;
maintainers = with maintainers; [ jtojnar ];