1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00

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 }: { stdenv, fetchurl, readline, ncurses }:
let
version = "1.23";
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "hstr-${version}";
name = "hstr-${version}"; version = "1.24";
src = fetchurl { src = fetchurl {
url = "https://github.com/dvorka/hstr/releases/download/${version}/hh-${version}-src.tgz"; url = "https://github.com/dvorka/hstr/releases/download/${version}/hh-${version}-src.tgz";
sha256 = "1hnira256p7sdilx34mnkji7gi2jcl98zz4izqxsqmnzj8ghhzkv"; sha256 = "0w8is777fwq6r17zhl9xwrv9f7vanllzjiasx1pg6pxvppq7rh0x";
}; };
buildInputs = [ readline ncurses ]; buildInputs = [ readline ncurses ];