mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, blueprint-compiler
|
|
, desktop-file-utils
|
|
, gtk4
|
|
, gst_all_1
|
|
, libsoup_3
|
|
, libadwaita
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "valuta";
|
|
version = "1.2.0";
|
|
|
|
pyproject = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ideveCore";
|
|
repo = "Valuta";
|
|
rev = "v${version}";
|
|
hash = "sha256-ygroF9hlmsjQTocly7CNL6zQi4N6h8va/ZkJ8w8QHms=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
gst_all_1.gstreamer
|
|
libsoup_3
|
|
libadwaita
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
dbus-python
|
|
pygobject3
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
# Arguments to be passed to `makeWrapper`, only used by buildPython*
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple application for converting currencies, with support for various APIs";
|
|
homepage = "https://github.com/ideveCore/Valuta";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ arthsmn ];
|
|
mainProgram = "currencyconverter";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|