rlwrap: 0.42 -> 0.43

wip/yesman
mimadrid 7 years ago
parent 0744e0d829
commit c375ed9b86
No known key found for this signature in database
GPG Key ID: 4D0F6894D41C6957
  1. 9
      pkgs/tools/misc/rlwrap/default.nix

@ -1,11 +1,12 @@
{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
name = "rlwrap-0.42";
name = "rlwrap-${version}";
version = "0.43";
src = fetchurl {
url = "http://utopia.knoware.nl/~hlub/uck/rlwrap/${name}.tar.gz";
sha256 = "0i3yz303wscrysyzpdq04h4nrl9ajz9dbwi80risdl5rkm3dhw2s";
url = "https://github.com/hanslub42/rlwrap/releases/download/v${version}/${name}.tar.gz";
sha256 = "0bzb7ylk2770iv59v2d0gypb21y2xn87m299s9rqm6rdi2vx11lf";
};
buildInputs = [ readline ];
@ -17,7 +18,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Readline wrapper for console programs";
homepage = http://utopia.knoware.nl/~hlub/uck/rlwrap/;
homepage = https://github.com/hanslub42/rlwrap;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];

Loading…
Cancel
Save