This commit is contained in:
2021-10-23 17:53:31 +01:00
parent 30148a6529
commit 7ebec48d40
17 changed files with 171 additions and 596 deletions

14
user/i3utils/default.nix Normal file
View File

@@ -0,0 +1,14 @@
{pkgs, buildGoModule, fetchFromSourcehut, ...}:
buildGoModule rec {
pname = "i3utils";
version = "v0.0.1";
src = fetchFromSourcehut {
owner = "~dpatterbee";
repo = pname;
rev = "${version}";
sha256 = "1h97131558nklhi3f2a3jl9np2n8y1irh088jc5iry63zpsfx2qm";
};
vendorSha256 = "1lzr4ga58aa35z0vkpw8jldplvg174q49nqqpdv0vz0aj3m585nq";
}