tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
open-isns: 0.100 -> 0.101
Markus Kowalewski
5 years ago
2576e200
ba5029b6
+3
-16
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
open-isns
default.nix
+3
-16
pkgs/os-specific/linux/open-isns/default.nix
···
1
1
-
{ lib, stdenv, openssl, fetchFromGitHub, fetchpatch }:
1
1
+
{ lib, stdenv, openssl, fetchFromGitHub }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "open-isns";
5
5
-
version = "0.100";
5
5
+
version = "0.101";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "open-iscsi";
9
9
repo = "open-isns";
10
10
rev = "v${version}";
11
11
-
sha256 = "0d0dz965azsisvfl5wpp1b7m0q0fmaz5r7x5dfybkry551sbcydr";
11
11
+
sha256 = "1g7kp1j2f8afsach6sbl4k05ybz1yz2s8yg073bv4gnv48gyxb2p";
12
12
};
13
13
-
14
14
-
patches = [
15
15
-
(fetchpatch {
16
16
-
name = "deprecated-sighold-sigrelease";
17
17
-
url = "https://github.com/open-iscsi/open-isns/commit/e7dac76ce61039fefa58985c955afccb60dabe87.patch";
18
18
-
sha256 = "15v106xn3ns7z4nlpby7kkm55rm9qncsmy2iqc4ifli0h67g34id";
19
19
-
})
20
20
-
(fetchpatch {
21
21
-
name = "warn_unused_result";
22
22
-
url = "https://github.com/open-iscsi/open-isns/commit/4c39cb09735a494099fba0474d25ff26800de952.patch";
23
23
-
sha256 = "1jlydrh9rgkky698jv0mp2wbbizn90q5wjbay086l0h6iqp8ibc3";
24
24
-
})
25
25
-
];
26
13
27
14
propagatedBuildInputs = [ openssl ];
28
15
outputs = [ "out" "lib" ];