62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, fetchFromGitHub
|
||
|
, wrapGAppsHook4
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkg-config
|
||
|
, appstream-glib
|
||
|
, desktop-file-utils
|
||
|
, gobject-introspection
|
||
|
, glib
|
||
|
, blueprint-compiler
|
||
|
, libadwaita
|
||
|
, python3Packages
|
||
|
}:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "halftone";
|
||
|
version = "0.3.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "tfuxu";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
hash = "sha256-hUaI5omYUa5Fq95N0FqJJe+WVoRWkANy0/mmaURWIzg=";
|
||
|
};
|
||
|
|
||
|
format = "other";
|
||
|
dontWrapGApps = true;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
appstream-glib
|
||
|
blueprint-compiler
|
||
|
desktop-file-utils
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
wrapGAppsHook4
|
||
|
glib
|
||
|
gobject-introspection
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
libadwaita
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = with python3Packages; [
|
||
|
pygobject3
|
||
|
wand
|
||
|
];
|
||
|
|
||
|
preFixup = ''
|
||
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/tfuxu/halftone";
|
||
|
description = "Simple app for giving images that pixel-art style";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ foo-dogsquared ];
|
||
|
};
|
||
|
}
|