tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
vpnc-scripts: use new SRI hash format
AndersonTorres
3 years ago
bb2fe109
f1ab6c91
+13
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
vpnc-scripts
default.nix
+13
-4
pkgs/tools/networking/vpnc-scripts/default.nix
···
1
1
-
{ lib, stdenv, fetchgit
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchgit
4
4
+
, coreutils
5
5
+
, gawk
6
6
+
, gnugrep
7
7
+
, iproute2
2
8
, makeWrapper
3
3
-
, nettools, gawk, systemd, openresolv, coreutils, gnugrep, iproute2
9
9
+
, nettools
10
10
+
, openresolv
11
11
+
, systemd
4
12
}:
5
13
6
14
stdenv.mkDerivation {
7
15
pname = "vpnc-scripts";
8
16
version = "unstable-2021-09-24";
17
17
+
9
18
src = fetchgit {
10
19
url = "https://gitlab.com/openconnect/vpnc-scripts.git";
11
20
rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f";
12
12
-
sha256 = "sha256:19aj6mfkclbkx6ycyd4xm7id1bq78ismw0y6z23f6s016k3sjc8c";
21
21
+
sha256 = "sha256-DDGpxzQBaOOG+MYDXnVEB6/Q4qmdNM+86XNRNl01UqU=";
13
22
};
14
23
15
24
nativeBuildInputs = [ makeWrapper ];
···
32
41
'';
33
42
34
43
meta = with lib; {
35
35
-
description = "script for vpnc to configure the network routing and name service";
36
44
homepage = "https://www.infradead.org/openconnect/";
45
45
+
description = "Script for vpnc to configure the network routing and name service";
37
46
license = licenses.gpl2Only;
38
47
maintainers = with maintainers; [ jerith666 ];
39
48
platforms = platforms.linux ++ platforms.darwin;