diff options
| author | Danilo Reyes <CaptainJawZ@outlook.com> | 2022-07-22 21:52:41 -0500 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-11-24 19:01:30 +0000 |
| commit | ea3f1203293db277110046d80d6965cac065d54c (patch) | |
| tree | 6acf1a475b1eb3d7438036bcff242e67bb664e57 | |
| parent | maintainers: add CaptainJawZ (diff) | |
| download | nixpkgs-origin/backport-182405-to-release-22.05.tar.gz | |
furtherance: init at 1.6.0origin/backport-182405-to-release-22.05
(cherry picked from commit ff81b059498dc691464906478a6608c8c9d7c150)
| -rw-r--r-- | pkgs/applications/misc/furtherance/default.nix | 48 | ||||
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 2 |
2 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/applications/misc/furtherance/default.nix b/pkgs/applications/misc/furtherance/default.nix new file mode 100644 index 000000000000..1d1772dd6727 --- /dev/null +++ b/pkgs/applications/misc/furtherance/default.nix @@ -0,0 +1,48 @@ +{ lib, stdenv, fetchFromGitHub, rustPlatform, appstream-glib, desktop-file-utils +, glib, libadwaita, meson, ninja, pkg-config, wrapGAppsHook4, dbus , gtk4, sqlite }: + +stdenv.mkDerivation rec { + pname = "furtherance"; + version = "1.6.0"; + + src = fetchFromGitHub { + owner = "lakoliu"; + repo = "Furtherance"; + rev = "v${version}"; + sha256 = "xshZpwL5AQvYSPoyt9Qutaym5IGBQHWwz4ev3xnVcSk="; + }; + + cargoDeps = rustPlatform.fetchCargoTarball { + inherit src; + name = "${pname}-${version}"; + sha256 = "J/e8NYd9JjmANj+4Eh3/Uq2/vS711CwERgmJ7i5orNw="; + }; + + nativeBuildInputs = [ + appstream-glib + desktop-file-utils + meson + ninja + pkg-config + rustPlatform.cargoSetupHook + rustPlatform.rust.cargo + rustPlatform.rust.rustc + wrapGAppsHook4 + ]; + + buildInputs = [ + dbus + glib + gtk4 + libadwaita + sqlite + ]; + + meta = with lib; { + description = "Track your time without being tracked"; + homepage = "https://github.com/lakoliu/Furtherance"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ CaptainJawZ ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a0f0598afc05..46cab256cba3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -26209,6 +26209,8 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) Cocoa; }; + furtherance = callPackage ../applications/misc/furtherance { }; + gg-scm = callPackage ../applications/version-management/git-and-tools/gg { }; gigalixir = with python3Packages; toPythonApplication gigalixir; |
