Add ActivityWatch
This commit is contained in:
parent
c02af259e2
commit
546bc7e2e7
7 changed files with 89 additions and 24 deletions
17
overlay.nix
Normal file
17
overlay.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{}:
|
||||
final: prev:
|
||||
{
|
||||
ncmpcpp = prev.ncmpcpp.override { visualizerSupport = true; };
|
||||
firefox = prev.firefox.override { pkcs11Modules = [ prev.eid-mw ]; };
|
||||
exodus = prev.exodus.overrideDerivation (old: {
|
||||
src = prev.fetchurl {
|
||||
url = "https://downloads.exodus.com/releases/${old.pname}-linux-x64-${old.version}.zip";
|
||||
sha256 = "sha256-rizVb3Yckd0ionRunT7VRq+wJvtNffkk3QzxTYQgvnY=";
|
||||
};
|
||||
unpackCmd = ''
|
||||
${prev.unzip}/bin/unzip "$src" -x "Exodus*/lib*so"
|
||||
'';
|
||||
});
|
||||
|
||||
activitywatch-bin = prev.callPackage ./packages/activitywatch.nix { };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue