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

23 lines
513 B
Nix
Raw Normal View History

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