wl-mirror: 0.11.2 -> 0.12.1

This commit is contained in:
Ferdinand Bachmann 2022-08-09 00:30:13 +02:00
parent 92ebe36c27
commit 2623306a5d

View File

@ -14,6 +14,7 @@
, pipectl , pipectl
, slurp , slurp
, rofi , rofi
, scdoc
}: }:
let let
@ -27,17 +28,17 @@ in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wl-mirror"; pname = "wl-mirror";
version = "0.11.2"; version = "0.12.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Ferdi265"; owner = "Ferdi265";
repo = "wl-mirror"; repo = "wl-mirror";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-D5uUKaepcSW9v2x6uBeLGXAyuLorlt4Lb6lZD/prfp8="; hash = "sha256-XuwHHJfUKYugx0CKxkloJnpm6s5rHetinsZCSlLJ0Zg=";
}; };
strictDeps = true; strictDeps = true;
nativeBuildInputs = [ cmake pkg-config wayland-scanner makeWrapper ]; nativeBuildInputs = [ cmake pkg-config wayland-scanner scdoc makeWrapper ];
buildInputs = [ libGL wayland wayland-protocols wlr-protocols bash ]; buildInputs = [ libGL wayland wayland-protocols wlr-protocols bash ];
postPatch = '' postPatch = ''
@ -49,6 +50,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ cmakeFlags = [
"-DINSTALL_EXAMPLE_SCRIPTS=${if installExampleScripts then "ON" else "OFF"}" "-DINSTALL_EXAMPLE_SCRIPTS=${if installExampleScripts then "ON" else "OFF"}"
"-DINSTALL_DOCUMENTATION=ON"
]; ];
postInstall = lib.optionalString installExampleScripts '' postInstall = lib.optionalString installExampleScripts ''