14 lines
327 B
Nix
14 lines
327 B
Nix
with import <nixpkgs> {};
|
|
|
|
buildGoModule rec {
|
|
pname = "i3utils";
|
|
version = "0.0.1";
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~dpatterbee/i3utils";
|
|
rev = "refs/heads/main";
|
|
sha256 = "1h97131558nklhi3f2a3jl9np2n8y1irh088jc5iry63zpsfx2qm";
|
|
};
|
|
|
|
vendorSha256 = "1lzr4ga58aa35z0vkpw8jldplvg174q49nqqpdv0vz0aj3m585nq";
|
|
}
|