vpnc-scripts: use new SRI hash format

+13 -4
+13 -4
pkgs/tools/networking/vpnc-scripts/default.nix
··· 1 - { lib, stdenv, fetchgit 1 + { lib 2 + , stdenv 3 + , fetchgit 4 + , coreutils 5 + , gawk 6 + , gnugrep 7 + , iproute2 2 8 , makeWrapper 3 - , nettools, gawk, systemd, openresolv, coreutils, gnugrep, iproute2 9 + , nettools 10 + , openresolv 11 + , systemd 4 12 }: 5 13 6 14 stdenv.mkDerivation { 7 15 pname = "vpnc-scripts"; 8 16 version = "unstable-2021-09-24"; 17 + 9 18 src = fetchgit { 10 19 url = "https://gitlab.com/openconnect/vpnc-scripts.git"; 11 20 rev = "b749c2cadc2f32e2efffa69302861f9a7d4a4e5f"; 12 - sha256 = "sha256:19aj6mfkclbkx6ycyd4xm7id1bq78ismw0y6z23f6s016k3sjc8c"; 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 - description = "script for vpnc to configure the network routing and name service"; 36 44 homepage = "https://www.infradead.org/openconnect/"; 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;