about summary refs log tree commit diff
path: root/pkgs/sternenseemann/t/default.nix
blob: 546f343059225d10d00242f22a6b71d960c81629 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonApplication, fetchFromGitHub, cram }:

buildPythonApplication rec {
  pname = "t";
  version = "unstable-2020-04-11";

  src = fetchFromGitHub {
    owner  = "sjl";
    repo   = pname;
    rev    = "815ccaf4f0bf2acb2a7f2cb330bf0532d782f408";
    sha256 = "1bi2hpdgwbqhcy88laba7h6kiqxvz75qqaf6sq221n39zfdl8n1g";
  };

  meta = with lib; {
    license = licenses.mit; # x11 license
    description = "A command-line todo list manager for people that want to finish tasks, not organize them";
    homepage = "https://hg.stevelosh.com/t";
  };
}