Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 95105fd37e1f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0ee07b70869e
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 27, 2020

  1. tudu: 0.10.3 -> 0.10.4

    r-ryantm committed May 27, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    a14d795 View commit details

Commits on May 28, 2020

  1. tudu: enable on darwin

    marsam committed May 28, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    dab017a View commit details
  2. Merge pull request #89038 from r-ryantm/auto-update/tudu

    tudu: 0.10.3 -> 0.10.4
    marsam authored May 28, 2020
    Copy the full SHA
    0ee07b7 View commit details
Showing with 11 additions and 6 deletions.
  1. +11 −6 pkgs/applications/office/tudu/default.nix
17 changes: 11 additions & 6 deletions pkgs/applications/office/tudu/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {

stdenv.mkDerivation rec {
pname = "tudu";
version = "0.10.3";
version = "0.10.4";

src = fetchurl {
url = "https://code.meskio.net/tudu/${pname}-${version}.tar.gz";
sha256 = "0140pw457cd05ysws998yhd3b087j98q8m0g3s4br942l65b8n2y";
sha256 = "14srqn968ii3sr4v6xc5zzs50dmm9am22lrm57j7n0rhjclwbssy";
};

buildInputs = [ ncurses ];

meta = {
preConfigure = stdenv.lib.optionalString stdenv.cc.isClang ''
substituteInPlace configure \
--replace 'echo "main()' 'echo "int main()'
'';

meta = with stdenv.lib; {
description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
homepage = "https://code.meskio.net/tudu/";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl3;
platforms = platforms.unix;
};
}