mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
binary: init at 0.3
This commit is contained in:
parent
f3e3fe79ae
commit
07981399fa
55
pkgs/by-name/bi/binary/package.nix
Normal file
55
pkgs/by-name/bi/binary/package.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user