mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
timekeeper: drop
This commit is contained in:
parent
48e2f6885f
commit
34af921dc9
@ -1,44 +0,0 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, poco
|
||||
, pkg-config
|
||||
, gnome2
|
||||
, gtkmm2
|
||||
, lib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "timekeeper";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bburdette";
|
||||
repo = "TimeKeeper";
|
||||
rev = "v${version}";
|
||||
fetchSubmodules = true;
|
||||
sha256 = "03rvzkygnn7igcindbb5bcmfy0l83n0awkzprsnhlb6ndxax3k9w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poco
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtkmm2
|
||||
gnome2.libglademm
|
||||
gnome2.libglade
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 TimeKeeper/TimeKeeper $out/bin/timekeeper
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Log hours worked and make reports";
|
||||
homepage = "https://github.com/bburdette/TimeKeeper";
|
||||
maintainers = with maintainers; [ bburdette ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
@ -808,6 +808,7 @@ mapAliases ({
|
||||
pgtap = postgresqlPackages.pgtap;
|
||||
plv8 = postgresqlPackages.plv8;
|
||||
tilp2 = throw "tilp2 has been removed"; # added 2022-01-15
|
||||
timekeeper = throw "timekeeper has been removed"; # added 2022-01-16
|
||||
timescaledb = postgresqlPackages.timescaledb;
|
||||
tlauncher = throw "tlauncher has been removed because there questionable practices and legality concerns";
|
||||
tsearch_extras = postgresqlPackages.tsearch_extras;
|
||||
|
@ -10241,8 +10241,6 @@ with pkgs;
|
||||
|
||||
timetagger = callPackage ../servers/timetagger { };
|
||||
|
||||
timekeeper = callPackage ../applications/office/timekeeper { };
|
||||
|
||||
timezonemap = callPackage ../development/libraries/timezonemap { };
|
||||
|
||||
tzupdate = callPackage ../applications/misc/tzupdate { };
|
||||
|
Loading…
Reference in New Issue
Block a user