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
{ stdenv, openssl, fetchFromGitHub }:
0
2
stdenv.mkDerivation rec {
3
name = "open-isns-${version}";
4
-
version = "0.95";
5
6
src = fetchFromGitHub {
7
owner = "gonzoleeman";
8
repo = "open-isns";
9
rev = "v${version}";
10
-
sha256 = "1c2x3yf9806gbjsw4xi805rfhyxk353a3whqvpccz8dwas6jajwh";
11
};
12
13
propagatedBuildInputs = [ openssl ];
14
-
outputs = ["out" "lib" ];
15
outputInclude = "lib";
16
17
installFlags = "etcdir=$(out)/etc vardir=$(out)/var/lib/isns";
···
1
{ stdenv, openssl, fetchFromGitHub }:
2
+
3
stdenv.mkDerivation rec {
4
name = "open-isns-${version}";
5
+
version = "0.97";
6
7
src = fetchFromGitHub {
8
owner = "gonzoleeman";
9
repo = "open-isns";
10
rev = "v${version}";
11
+
sha256 = "17aichjgkwjfp9dx1piw7dw8ddz1bgm5mk3laid2zvjks1h739k3";
12
};
13
14
propagatedBuildInputs = [ openssl ];
15
+
outputs = [ "out" "lib" ];
16
outputInclude = "lib";
17
18
installFlags = "etcdir=$(out)/etc vardir=$(out)/var/lib/isns";