package.nix (685B)
1 { 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5 }: 6 7 buildGoModule (finalAttrs: { 8 pname = "youtimetrack"; 9 version = "0.1.1"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromGitHub { 14 owner = "bullshitsoftware"; 15 repo = "youtimetrack"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-MZzXeCMlSLriDKg8yqeOzJBA5T47ImKjr+Mdu/wUjzU="; 18 }; 19 20 vendorHash = "sha256-HRyjdTTwDmu/5NVpjqCwatYuWN15j3rTgrhv76uMS7I="; 21 22 __darwinAllowLocalNetworking = true; 23 24 meta = { 25 description = "CLI tools for YouTrack time management"; 26 homepage = "https://github.com/bullshitsoftware/youtimetrack"; 27 license = lib.licenses.wtfpl; 28 maintainers = [ lib.maintainers.sikmir ]; 29 }; 30 })
