tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hstr: 1.23 -> 1.24
Matthias Beyer
8 years ago
9380acf8
a8d4d996
+3
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
hstr
default.nix
+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
0
0
0
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 ];