From 71c1dba86da87fccc2837ce32c5d87813d23f0be Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 18 Oct 2023 20:23:41 +0200 Subject: wdisplays: unstable-2021-04-03 -> 1.1.1 ChangeLogs: * https://github.com/artizirk/wdisplays/releases/tag/1.1 * https://github.com/artizirk/wdisplays/releases/tag/1.1.1 The original repo re-appeared now[1], but I have zero reason to trust them to not delete it any time again. The fork I switched to after it disappeared back in 2021 was marked as archived a while later. The one that people contribute to and is also used by Fedora[2] and AUR[3] is artizirk/wdisplays which is used now. [1] https://github.com/cyclopsian/wdisplays [2] https://src.fedoraproject.org/rpms/wdisplays/blob/f09a1e35d560de153b1bc0939382c37e863e7137/f/wdisplays.spec [3] https://aur.archlinux.org/packages/wdisplays --- pkgs/tools/graphics/wdisplays/default.nix | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'pkgs/tools/graphics/wdisplays') diff --git a/pkgs/tools/graphics/wdisplays/default.nix b/pkgs/tools/graphics/wdisplays/default.nix index b05aa13ea6010..9c7093b58f85e 100644 --- a/pkgs/tools/graphics/wdisplays/default.nix +++ b/pkgs/tools/graphics/wdisplays/default.nix @@ -1,24 +1,20 @@ { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, gtk3, libepoxy, wayland, wrapGAppsHook }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "wdisplays"; - version = "unstable-2021-04-03"; + version = "1.1.1"; nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ]; buildInputs = [ gtk3 libepoxy wayland ]; src = fetchFromGitHub { - owner = "luispabon"; + owner = "artizirk"; repo = "wdisplays"; - rev = "7f2eac0d2aa81b5f495da7950fd5a94683f7868e"; - sha256 = "sha256-cOF3+T34zPro58maWUouGG+vlLm2C5NfcH7PZhSvApE="; + rev = finalAttrs.version; + sha256 = "sha256-dtvP930ChiDRT60xq6xBDU6k+zHnkrAkxkKz2FxlzRs="; }; - patchPhase = '' - substituteInPlace ./resources/wdisplays.desktop.in --replace "@app_id@" "wdisplays" - ''; - meta = with lib; { description = "A graphical application for configuring displays in Wayland compositors"; homepage = "https://github.com/luispabon/wdisplays"; @@ -27,4 +23,4 @@ stdenv.mkDerivation rec { platforms = platforms.linux; mainProgram = "wdisplays"; }; -} +}) -- cgit 1.4.1