uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
41
pkgs/applications/graphics/mtpaint/default.nix
Normal file
41
pkgs/applications/graphics/mtpaint/default.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ lib, stdenv, fetchFromGitHub
|
||||
, pkg-config
|
||||
, freetype, giflib, gtk3, lcms2, libjpeg, libpng, libtiff, openjpeg, gifsicle
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mtPaint";
|
||||
version = "3.50.01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wjaguar";
|
||||
repo = "mtPaint";
|
||||
rev = "a4675ff5cd9fcd57d291444cb9f332b48f11243f";
|
||||
sha256 = "04wqxz8i655gz5rnz90cksy8v6m2jhcn1j8rzhqpp5xhawlmq24y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
freetype giflib gtk3 lcms2 libjpeg libpng libtiff openjpeg gifsicle
|
||||
];
|
||||
|
||||
configureFlags = [ "gtk3" "intl" "man" ];
|
||||
|
||||
meta = {
|
||||
description = "A simple GTK painting program";
|
||||
longDescription = ''
|
||||
mtPaint is a simple GTK painting program designed for
|
||||
creating icons and pixel based artwork. It can edit indexed palette
|
||||
or 24 bit RGB images and offers basic painting and palette manipulation
|
||||
tools. It also has several other more powerful features such as channels,
|
||||
layers and animation.
|
||||
Due to its simplicity and lack of dependencies it runs well on
|
||||
GNU/Linux, Windows and older PC hardware.
|
||||
'';
|
||||
homepage = "http://mtpaint.sourceforge.net/";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ lib.maintainers.vklquevs ];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue