nixpkgs/pkgs/applications/misc/ultralist/default.nix

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

23 lines
513 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-03-20 16:37:23 +00:00
buildGoModule rec {
pname = "ultralist";
2021-02-06 23:21:16 +00:00
version = "1.7.0";
2018-03-20 16:37:23 +00:00
src = fetchFromGitHub {
owner = "ultralist";
repo = "ultralist";
2019-09-08 23:38:31 +00:00
rev = version;
2021-02-06 23:21:16 +00:00
sha256 = "sha256-GGBW6rpwv1bVbLTD//cU8jNbq/27Ls0su7DymCJTSmY=";
2018-03-20 16:37:23 +00:00
};
vendorSha256 = null;
meta = with lib; {
2018-03-20 16:37:23 +00:00
description = "Simple GTD-style todo list for the command line";
homepage = "https://ultralist.io";
2018-03-20 16:37:23 +00:00
license = licenses.mit;
maintainers = with maintainers; [ uvnikita ];
};
}