56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
python3Packages,
|
||
|
appstream,
|
||
|
desktop-file-utils,
|
||
|
glib,
|
||
|
gobject-introspection,
|
||
|
libadwaita,
|
||
|
meson,
|
||
|
ninja,
|
||
|
pkg-config,
|
||
|
wrapGAppsHook4,
|
||
|
}:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "binary";
|
||
|
version = "0.3";
|
||
|
format = "other";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "fizzyizzy05";
|
||
|
repo = "binary";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-bR0oCqbnyUTCueT4f0Ij7qbwjNnN4eMDAOUK9MnCEJ0=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
appstream
|
||
|
desktop-file-utils
|
||
|
glib # need glib-compile-schemas
|
||
|
gobject-introspection
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
wrapGAppsHook4
|
||
|
];
|
||
|
|
||
|
buildInputs = [ libadwaita ];
|
||
|
|
||
|
dependencies = with python3Packages; [ pygobject3 ];
|
||
|
|
||
|
dontWrapGApps = true;
|
||
|
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Small and simple app to convert numbers to a different base";
|
||
|
homepage = "https://github.com/fizzyizzy05/binary";
|
||
|
changelog = "https://github.com/fizzyizzy05/binary/releases/tag/${version}";
|
||
|
license = lib.licenses.gpl3Plus;
|
||
|
maintainers = with lib.maintainers; [ getchoo ];
|
||
|
mainProgram = "binary";
|
||
|
platforms = lib.platforms.linux;
|
||
|
};
|
||
|
}
|