Unverified Commit 5196625a authored by aszlig's avatar aszlig
Browse files

Merge pull request #199228 (bump dstask)

This updates dstask from version 0.23.1 to 0.25.

The package bump was already approved by the maintainer (@stianlagstad)
and I did some small tests whether the dstask command actually works.
parents c1bebff0 306ab859
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@

buildGoModule rec {
  pname = "dstask";
  version = "0.23.1";
  version = "0.25";

  src = fetchFromGitHub {
    owner = "naggie";
    repo = pname;
    rev = "v${version}";
    sha256 = "0rfz8jim0xqcwdb5n28942v9r3hbvhjrwdgzvbwc9f9psqg2s8d2";
    sha256 = "sha256-nsEn9ZhrSWO0kltyEXaehMcFpqVbivSsXOxu/AX7A9U=";
  };

  # Set vendorSha256 to null because dstask vendors its dependencies (meaning
@@ -30,8 +30,6 @@ buildGoModule rec {
    "-X github.com/naggie/dstask.GIT_COMMIT=v${version}"
  ];

  subPackages = [ "cmd/dstask.go" ];

  meta = with lib; {
    description = "Command line todo list with super-reliable git sync";
    homepage = src.meta.homepage;