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
-
{ lib, stdenv, fetchgit
0
0
0
0
0
0
2
, makeWrapper
3
-
, nettools, gawk, systemd, openresolv, coreutils, gnugrep, iproute2
0
0
4
}:
5
6
stdenv.mkDerivation {
7
pname = "vpnc-scripts";
8
version = "unstable-2021-09-24";
0
9
src = fetchgit {
10
url = "https://gitlab.com/openconnect/vpnc-scripts.git";
11
rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f";
12
-
sha256 = "sha256:19aj6mfkclbkx6ycyd4xm7id1bq78ismw0y6z23f6s016k3sjc8c";
13
};
14
15
nativeBuildInputs = [ makeWrapper ];
···
32
'';
33
34
meta = with lib; {
35
-
description = "script for vpnc to configure the network routing and name service";
36
homepage = "https://www.infradead.org/openconnect/";
0
37
license = licenses.gpl2Only;
38
maintainers = with maintainers; [ jerith666 ];
39
platforms = platforms.linux ++ platforms.darwin;
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchgit
4
+
, coreutils
5
+
, gawk
6
+
, gnugrep
7
+
, iproute2
8
, makeWrapper
9
+
, nettools
10
+
, openresolv
11
+
, systemd
12
}:
13
14
stdenv.mkDerivation {
15
pname = "vpnc-scripts";
16
version = "unstable-2021-09-24";
17
+
18
src = fetchgit {
19
url = "https://gitlab.com/openconnect/vpnc-scripts.git";
20
rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f";
21
+
sha256 = "sha256-DDGpxzQBaOOG+MYDXnVEB6/Q4qmdNM+86XNRNl01UqU=";
22
};
23
24
nativeBuildInputs = [ makeWrapper ];
···
41
'';
42
43
meta = with lib; {
0
44
homepage = "https://www.infradead.org/openconnect/";
45
+
description = "Script for vpnc to configure the network routing and name service";
46
license = licenses.gpl2Only;
47
maintainers = with maintainers; [ jerith666 ];
48
platforms = platforms.linux ++ platforms.darwin;