Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gdlv: 1.8.0 -> 1.10.0

authored by Aaron Jheng and committed by Weijia Wang 08d41b73 c1bb79af

+12 -5
+11 -4
pkgs/development/tools/gdlv/default.nix
··· 2 2 , stdenv 3 3 , buildGoModule 4 4 , fetchFromGitHub 5 - , OpenGL 5 + , Foundation 6 + , CoreGraphics 7 + , Metal 6 8 , AppKit 7 9 }: 8 10 9 11 buildGoModule rec { 10 12 pname = "gdlv"; 11 - version = "1.8.0"; 13 + version = "1.10.0"; 12 14 13 15 src = fetchFromGitHub { 14 16 owner = "aarzilli"; 15 17 repo = "gdlv"; 16 18 rev = "v${version}"; 17 - sha256 = "sha256-G1/Wbz836yfGZ/1ArICrNbWU6eh4SHXDmo4FKkjUszY="; 19 + hash = "sha256-OPsQOFwV6jIX4ZOVwJmpTeQUr/zkfkqCr86HmPhYarI="; 18 20 }; 19 21 22 + preBuild = lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11.0") '' 23 + export MACOSX_DEPLOYMENT_TARGET=10.15 24 + ''; 25 + 20 26 vendorHash = null; 27 + 21 28 subPackages = "."; 22 29 23 - buildInputs = lib.optionals stdenv.isDarwin [ OpenGL AppKit ]; 30 + buildInputs = lib.optionals stdenv.isDarwin [ Foundation CoreGraphics Metal AppKit ]; 24 31 25 32 meta = with lib; { 26 33 description = "GUI frontend for Delve";
+1 -1
pkgs/top-level/all-packages.nix
··· 28592 28592 ginkgo = callPackage ../development/tools/ginkgo { }; 28593 28593 28594 28594 gdlv = darwin.apple_sdk_11_0.callPackage ../development/tools/gdlv { 28595 - inherit (darwin.apple_sdk_11_0.frameworks) OpenGL AppKit; 28595 + inherit (darwin.apple_sdk_11_0.frameworks) Foundation CoreGraphics Metal AppKit; 28596 28596 }; 28597 28597 28598 28598 go-bindata = callPackage ../development/tools/go-bindata { };