diff options
author | stuebinm | 2024-03-07 23:16:22 +0100 |
---|---|---|
committer | stuebinm | 2024-03-07 23:16:22 +0100 |
commit | a2ae3706ec9bbacd07615592679610648b366246 (patch) | |
tree | 560033c21067420d90dcb3f8cec231c10cf18327 /pkgs | |
parent | f0222c8625d7a0fa460e4388d313947e6fa9c515 (diff) |
home: add git annex remote for amatl
the tool is still a bit rough, but it should work well enough for actual
use (even if i have to restart xochitl afterwards)
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/overlay.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/overlay.nix b/pkgs/overlay.nix index ae1741b..a0d629f 100644 --- a/pkgs/overlay.nix +++ b/pkgs/overlay.nix @@ -17,6 +17,19 @@ in inherit (unstable) lean4; + + git-annex-remote-remarkable2 = self.callPackage + ({ rustPlatform, fetchgit, ... }: + rustPlatform.buildRustPackage rec { + name = "git-annex-remote-remarkable2"; + src = fetchgit { + url = "https://stuebinm.eu/git/git-annex-remote-remarkable2"; + rev = "refs/heads/main"; + hash = "sha256-ZDoZFFADti3ZwLZqeP/F3BbW+Csuprw6+1LBBQIjnlo="; + }; + cargoLock.lockFile = "${src.outPath}/Cargo.lock"; + }) { }; + #### packages which are actually in use somewhere #### galmon-core = self.callPackage ./galmon.nix {}; |