hstr: 1.23 -> 1.24

+3 -6
+3 -6
pkgs/applications/misc/hstr/default.nix
··· 1 { stdenv, fetchurl, readline, ncurses }: 2 3 - let 4 - version = "1.23"; 5 - in 6 stdenv.mkDerivation rec { 7 - 8 - name = "hstr-${version}"; 9 10 src = fetchurl { 11 url = "https://github.com/dvorka/hstr/releases/download/${version}/hh-${version}-src.tgz"; 12 - sha256 = "1hnira256p7sdilx34mnkji7gi2jcl98zz4izqxsqmnzj8ghhzkv"; 13 }; 14 15 buildInputs = [ readline ncurses ];
··· 1 { stdenv, fetchurl, readline, ncurses }: 2 3 stdenv.mkDerivation rec { 4 + name = "hstr-${version}"; 5 + version = "1.24"; 6 7 src = fetchurl { 8 url = "https://github.com/dvorka/hstr/releases/download/${version}/hh-${version}-src.tgz"; 9 + sha256 = "0w8is777fwq6r17zhl9xwrv9f7vanllzjiasx1pg6pxvppq7rh0x"; 10 }; 11 12 buildInputs = [ readline ncurses ];