Merge pull request #261882 from Ma27/bump-wdisplays

wdisplays: unstable-2021-04-03 -> 1.1.1

authored by

Linus Heckemann and committed by
GitHub
84e46cd9 799fff88

+6 -10
+6 -10
pkgs/tools/graphics/wdisplays/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, gtk3, libepoxy, wayland, wrapGAppsHook }: 2 2 3 - stdenv.mkDerivation rec { 3 + stdenv.mkDerivation (finalAttrs: { 4 4 pname = "wdisplays"; 5 - version = "unstable-2021-04-03"; 5 + version = "1.1.1"; 6 6 7 7 nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ]; 8 8 9 9 buildInputs = [ gtk3 libepoxy wayland ]; 10 10 11 11 src = fetchFromGitHub { 12 - owner = "luispabon"; 12 + owner = "artizirk"; 13 13 repo = "wdisplays"; 14 - rev = "7f2eac0d2aa81b5f495da7950fd5a94683f7868e"; 15 - sha256 = "sha256-cOF3+T34zPro58maWUouGG+vlLm2C5NfcH7PZhSvApE="; 14 + rev = finalAttrs.version; 15 + sha256 = "sha256-dtvP930ChiDRT60xq6xBDU6k+zHnkrAkxkKz2FxlzRs="; 16 16 }; 17 - 18 - patchPhase = '' 19 - substituteInPlace ./resources/wdisplays.desktop.in --replace "@app_id@" "wdisplays" 20 - ''; 21 17 22 18 meta = with lib; { 23 19 description = "A graphical application for configuring displays in Wayland compositors"; ··· 27 23 platforms = platforms.linux; 28 24 mainProgram = "wdisplays"; 29 25 }; 30 - } 26 + })