Merge pull request #212826 from wegank/diswall-bump

diswall: 0.2.0 -> 0.3.0

authored by

Weijia Wang and committed by
GitHub
01f4f138 c5b2c839

+11 -4
+11 -4
pkgs/applications/networking/diswall/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub }: 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, darwin }: 2 2 3 + let 4 + inherit (darwin.apple_sdk.frameworks) Security; 5 + in 3 6 rustPlatform.buildRustPackage rec { 4 7 pname = "diswall"; 5 - version = "0.2.0"; 8 + version = "0.3.0"; 6 9 7 10 src = fetchFromGitHub { 8 11 owner = "dis-works"; 9 12 repo = "diswall-rs"; 10 13 rev = "v${version}"; 11 - sha256 = "sha256-zT8RRg+Ver7dYtJL9htrZ8nXoD0V7IvdIqHTKDmbZ7c="; 14 + sha256 = "sha256-3FTqT3IL48lYmGoB9u76RQSgZPbaq7IkOyQjyxwpkWA="; 12 15 }; 13 16 14 - cargoSha256 = "sha256-N+w1OiCy3scahFdYI49GpL301t1qNd/X4fdLMoQE/2s="; 17 + buildInputs = lib.optionals stdenv.isDarwin [ 18 + Security 19 + ]; 20 + 21 + cargoSha256 = "sha256-sb6s4Oc3W+I9DB0SGyZINxyWHCSpkakiEeQUatEpeEU="; 15 22 16 23 doCheck = false; 17 24