lol

Merge pull request #172772 from danielfullmer/microsoft_gsl-fetchpatch

microsoft_gsl: use fetchpatch instead of fetchurl

authored by

Artturi and committed by
GitHub
ff6e5ed3 882eea10

+3 -3
+3 -3
pkgs/development/libraries/microsoft_gsl/default.nix
··· 3 3 , fetchFromGitHub 4 4 , cmake 5 5 , gtest 6 - , fetchurl 6 + , fetchpatch 7 7 , pkg-config 8 8 }: 9 9 ··· 20 20 21 21 patches = [ 22 22 # Search for GoogleTest via pkg-config first, ref: https://github.com/NixOS/nixpkgs/pull/130525 23 - (fetchurl { 23 + (fetchpatch { 24 24 url = "https://github.com/microsoft/GSL/commit/f5cf01083baf7e8dc8318db3648bc6098dc32d67.patch"; 25 - sha256 = "sha256-uouv35crtly8kYhKyvMyZkqwTKt1jXC6dZjw4sQ6uv0="; 25 + sha256 = "sha256-HJxG87nVFo1CGNivCqt/JhjTj2xLzQe8bF5Km7/KG+Y="; 26 26 }) 27 27 ]; 28 28