nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 stdenv,
3 lib,
4 buildGoModule,
5 fetchFromGitHub,
6}:
7
8buildGoModule rec {
9 pname = "grit";
10 version = "0.3.0";
11
12 src = fetchFromGitHub {
13 owner = "climech";
14 repo = "grit";
15 rev = "v${version}";
16 sha256 = "sha256-c8wBwmXFjpst6UxL5zmTxMR4bhzpHYljQHiJFKiNDms=";
17 };
18
19 vendorHash = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg=";
20
21 meta = with lib; {
22 broken = stdenv.hostPlatform.isDarwin;
23 description = "Multitree-based personal task manager";
24 homepage = "https://github.com/climech/grit";
25 license = licenses.mit;
26 maintainers = [ ];
27 mainProgram = "grit";
28 };
29}