tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openisns: 0.95 -> 0.97
Robin Gloster
9 years ago
96b4d691
900cc90f
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
open-isns
default.nix
+4
-3
pkgs/os-specific/linux/open-isns/default.nix
···
1
1
{ stdenv, openssl, fetchFromGitHub }:
2
2
+
2
3
stdenv.mkDerivation rec {
3
4
name = "open-isns-${version}";
4
4
-
version = "0.95";
5
5
+
version = "0.97";
5
6
6
7
src = fetchFromGitHub {
7
8
owner = "gonzoleeman";
8
9
repo = "open-isns";
9
10
rev = "v${version}";
10
10
-
sha256 = "1c2x3yf9806gbjsw4xi805rfhyxk353a3whqvpccz8dwas6jajwh";
11
11
+
sha256 = "17aichjgkwjfp9dx1piw7dw8ddz1bgm5mk3laid2zvjks1h739k3";
11
12
};
12
13
13
14
propagatedBuildInputs = [ openssl ];
14
14
-
outputs = ["out" "lib" ];
15
15
+
outputs = [ "out" "lib" ];
15
16
outputInclude = "lib";
16
17
17
18
installFlags = "etcdir=$(out)/etc vardir=$(out)/var/lib/isns";