Merge pull request #182405 from CaptainJawZ/master

furtherhance: init at 1.6.0
This commit is contained in:
Jan Tojnar 2022-11-24 19:55:59 +01:00 committed by GitHub
commit 8a9ed9ff5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 56 additions and 0 deletions

View file

@ -2233,6 +2233,12 @@
github = "scaredmushroom";
githubId = 45340040;
};
CaptainJawZ = {
email = "CaptainJawZ@outlook.com";
name = "Danilo Reyes";
github = "CaptainJawZ";
githubId = 43111068;
};
carlosdagos = {
email = "m@cdagostino.io";
github = "carlosdagos";

View file

@ -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 ];
};
}

View file

@ -28302,6 +28302,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 = callPackage ../tools/misc/gigalixir { };