Merge pull request #155191 from veprbl/pr/broken_i3lock-blur

i3lock-blur: mark as broken on darwin
This commit is contained in:
Bobby Rong 2022-01-16 16:56:50 +08:00 committed by GitHub
commit 04cee7c9ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ i3lock-color, lib, fetchFromGitHub }:
{ i3lock-color, lib, stdenv, fetchFromGitHub }:
i3lock-color.overrideAttrs (oldAttrs : rec {
pname = "i3lock-blur";
@ -17,5 +17,6 @@ i3lock-color.overrideAttrs (oldAttrs : rec {
license = licenses.bsd3;
maintainers = with maintainers; [ dan4ik605743 ];
platforms = platforms.all;
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/i3lock-blur.x86_64-darwin
};
})