diff options
| author | Ryan Burns <rtburns@protonmail.com> | 2020-10-23 16:54:48 -0700 |
|---|---|---|
| committer | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2020-10-24 23:24:15 -0400 |
| commit | a617a2f6d64008a7c6509d99f73d04ce1851bd9f (patch) | |
| tree | c2ac2fcd48634d8dbf3c351ab2e8ed611aa4806f | |
| parent | Merge pull request #101489 from buckley310/release-20.09 (diff) | |
| download | nixpkgs-a617a2f6d64008a7c6509d99f73d04ce1851bd9f.tar.gz | |
blugon: fix build on darwin
(cherry picked from commit c58233a34a0c005c0b1d73b3cc853c346dfd11da)
| -rw-r--r-- | pkgs/applications/misc/blugon/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/misc/blugon/default.nix b/pkgs/applications/misc/blugon/default.nix index 896daa27f7cb..9aa8d3da39a0 100644 --- a/pkgs/applications/misc/blugon/default.nix +++ b/pkgs/applications/misc/blugon/default.nix @@ -13,6 +13,12 @@ stdenv.mkDerivation rec { buildInputs = [ python3 libX11 libXrandr ]; + # Remove at next release + # https://github.com/jumper149/blugon/commit/d262cd05 + postPatch = '' + sed -i 's,CC = gcc,CC ?= gcc,g' backends/scg/Makefile + ''; + makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { |
