3
0
Fork 0
forked from mirrors/nixpkgs

hstr: 1.23 -> 1.24

This commit is contained in:
Matthias Beyer 2018-02-21 14:01:47 +01:00
parent a8d4d996c1
commit 9380acf8d3

View file

@ -1,15 +1,12 @@
{ stdenv, fetchurl, readline, ncurses }:
let
version = "1.23";
in
stdenv.mkDerivation rec {
name = "hstr-${version}";
name = "hstr-${version}";
version = "1.24";
src = fetchurl {
url = "https://github.com/dvorka/hstr/releases/download/${version}/hh-${version}-src.tgz";
sha256 = "1hnira256p7sdilx34mnkji7gi2jcl98zz4izqxsqmnzj8ghhzkv";
sha256 = "0w8is777fwq6r17zhl9xwrv9f7vanllzjiasx1pg6pxvppq7rh0x";
};
buildInputs = [ readline ncurses ];