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: a7ebdf137159
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 65b4f4f09f3b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 11, 2017

  1. tasksh: Add readline support.

    hiberno (Christian Lask) committed Sep 11, 2017
    Copy the full SHA
    38563d6 View commit details
  2. Merge pull request #29230 from hiberno/add-readline-to-tasksh

    tasksh: Add readline support.
    Mic92 authored Sep 11, 2017
    Copy the full SHA
    65b4f4f View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/applications/misc/tasksh/default.nix
3 changes: 2 additions & 1 deletion pkgs/applications/misc/tasksh/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, libuuid, gnutls }:
{ stdenv, fetchurl, cmake, libuuid, gnutls, readline }:

stdenv.mkDerivation rec {
name = "tasksh-${version}";
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
};

buildInputs = [ readline ];
nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {