Skip to content

Commit

Permalink
fix(nordvpn): fix 404 curl error by updating nordvpn version and repo (
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKiv authored Dec 10, 2024
1 parent 354bcbb commit 716db13
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions pkgs/nordvpn/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,36 @@
, cacert
, libxml2
, libidn2
, libnl
, libcap_ng
, zlib
, wireguard-tools
}:

let
pname = "nordvpn";
version = "3.16.5";
version = "3.19.2";

nordVPNBase = stdenv.mkDerivation {
inherit pname version;

src = fetchurl {
url = "https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb";
hash = "sha256-d2FXgmW/Tyz18EzQ912HNuMEjq0iW8L4WY8N4EzLBwQ=";
url = "https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/n/nordvpn/nordvpn_${version}_amd64.deb";
hash = "sha256-V8SM91Q+DJelrEEipcnwI3BAvput79U13U908u6tjMw=";
};

buildInputs = [ libxml2 libidn2 ];
nativeBuildInputs = [ dpkg autoPatchelfHook stdenv.cc.cc.lib ];
buildInputs = [
libxml2
libidn2
libnl
libcap_ng
];

nativeBuildInputs = [
dpkg
autoPatchelfHook
stdenv.cc.cc.lib
];

dontConfigure = true;
dontBuild = true;
Expand Down

1 comment on commit 716db13

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All packages were built and cached successfully! (368 not suitable for building)

Please sign in to comment.