diff --git a/pkgs/by-name/bi/binary/package.nix b/pkgs/by-name/bi/binary/package.nix new file mode 100644 index 0000000000000..1a908e526565b --- /dev/null +++ b/pkgs/by-name/bi/binary/package.nix @@ -0,0 +1,55 @@ +{ + 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; + }; +}