mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
|
{ mkDerivation
|
||
|
, lib
|
||
|
, fetchFromGitHub
|
||
|
, makeDesktopItem
|
||
|
, qmake
|
||
|
, qtbase
|
||
|
, libpng
|
||
|
, giflib
|
||
|
, impy
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
desktopItem = makeDesktopItem {
|
||
|
name = "EvilPixie";
|
||
|
desktopName = "EvilPixie";
|
||
|
exec = "evilpixie %F";
|
||
|
icon = "evilpixie";
|
||
|
genericName = "Image Editor";
|
||
|
categories = "Graphics;2DGraphics;RasterGraphics;";
|
||
|
mimeType = "image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/x-pcx;image/x-targa;image/x-tga;";
|
||
|
};
|
||
|
|
||
|
in mkDerivation rec {
|
||
|
pname = "evilpixie";
|
||
|
version = "0.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "bcampbell";
|
||
|
repo = "evilpixie";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1yg4ic3kcxqmr7k5bbvrv5iavlnhpdx6510z5wha9k9k5q9c4dvh";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
qmake
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
qtbase
|
||
|
libpng
|
||
|
giflib
|
||
|
impy
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
ln -s ${desktopItem}/share/applications $out/share
|
||
|
install -Dm 444 icon_128x128.png $out/share/icons/hicolor/128x128/apps/evilpixie.png
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Pixel-oriented paint program, modelled on Deluxe Paint";
|
||
|
homepage = "http://evilpixie.scumways.com/";
|
||
|
downloadPage = "https://github.com/bcampbell/evilpixie/releases";
|
||
|
license = licenses.gpl3;
|
||
|
maintainers = with maintainers; [ fgaz ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|
||
|
|