Skip to content

Commit

Permalink
addwater: init at 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
reecertv committed Oct 21, 2024
1 parent 500471c commit 1786c57
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions pkgs/by-name/ad/addwater/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{ blueprint-compiler
, desktop-file-utils
, fetchFromGitHub
, lib
, libadwaita
, libportal-gtk4
, meson
, ninja
, python3Packages
, wrapGAppsHook4
, appstream
}:

python3Packages.buildPythonApplication rec {
pname = "addwater";
version = "1.1.3";
# built with meson, not a python format
format = "other";

src = fetchFromGitHub {
owner = "largestgithubuseronearth";
repo = "addwater";
rev = "refs/tags/v${version}";
hash = "sha256-TUNDUJxYM9v1UECYSC+jJ+53hFGPChivz9kqyU9Qee4=";
};

buildInputs = [
libadwaita
libportal-gtk4
];

nativeBuildInputs = [
blueprint-compiler
desktop-file-utils
meson
ninja
wrapGAppsHook4
appstream
];

propagatedBuildInputs = with python3Packages; [
packaging
pygobject3
requests
];

meta = {
description = "Keep Firefox in fashion";
homepage = "https://github.com/largestgithubuseronearth/addwater";
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.reecertv ];
mainProgram = "addwater";
platforms = lib.platforms.linux;
};
}

0 comments on commit 1786c57

Please sign in to comment.