nixpkgs/pkgs/tools/misc/grit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
592 B
Nix
Raw Normal View History

{ stdenv, lib, buildGoModule, fetchFromGitHub }:
2021-04-05 23:46:53 +00:00
buildGoModule rec {
pname = "grit";
2021-04-15 01:13:22 +00:00
version = "0.3.0";
2021-04-05 23:46:53 +00:00
src = fetchFromGitHub {
owner = "climech";
repo = "grit";
rev = "v${version}";
2021-04-15 01:13:22 +00:00
sha256 = "sha256-c8wBwmXFjpst6UxL5zmTxMR4bhzpHYljQHiJFKiNDms=";
2021-04-05 23:46:53 +00:00
};
vendorHash = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg=";
2021-04-05 23:46:53 +00:00
meta = with lib; {
broken = stdenv.isDarwin;
2021-04-05 23:46:53 +00:00
description = "Multitree-based personal task manager";
homepage = "https://github.com/climech/grit";
license = licenses.mit;
2024-06-24 21:05:06 +00:00
maintainers = [ ];
2023-11-27 01:17:53 +00:00
mainProgram = "grit";
2021-04-05 23:46:53 +00:00
};
}