nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

glee: fix cmake 4 compatibility (#451055)

authored by

Leona Maroni and committed by
GitHub
55c6c348 beb327fb

+6
+6
pkgs/by-name/gl/glee/package.nix
··· 27 27 xorg.libX11 28 28 ]; 29 29 30 + postPatch = '' 31 + substituteInPlace CMakeLists.txt --replace-fail \ 32 + 'cmake_minimum_required(VERSION 2.8)' \ 33 + 'cmake_minimum_required(VERSION 3.10)' 34 + ''; 35 + 30 36 configureScript = '' 31 37 cmake 32 38 '';