From 0330a06eea5cf7f6aca59119ed98bd737b940408 Mon Sep 17 00:00:00 2001 From: kilianar Date: Mon, 27 Jun 2022 13:48:36 +0200 Subject: [PATCH] wlr-randr: upstream moved from GitHub to Sourcehut Upstream moved from https://github.com/emersion/wlr-randr to https://sr.ht/~emersion/wlr-randr --- pkgs/tools/wayland/wlr-randr/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/wayland/wlr-randr/default.nix b/pkgs/tools/wayland/wlr-randr/default.nix index b6e29152e19..4551f3d5f4a 100644 --- a/pkgs/tools/wayland/wlr-randr/default.nix +++ b/pkgs/tools/wayland/wlr-randr/default.nix @@ -1,6 +1,6 @@ { lib , stdenv -, fetchFromGitHub +, fetchFromSourcehut , meson , ninja , pkg-config @@ -12,8 +12,8 @@ stdenv.mkDerivation rec { pname = "wlr-randr"; version = "0.2.0"; - src = fetchFromGitHub { - owner = "emersion"; + src = fetchFromSourcehut { + owner = "~emersion"; repo = pname; rev = "v${version}"; sha256 = "sha256-JeSxFXSFxcTwJz9EaLb18wtD4ZIT+ATeYM5OyDTJhDQ="; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "An xrandr clone for wlroots compositors"; - homepage = "https://github.com/emersion/wlr-randr"; + homepage = "https://git.sr.ht/~emersion/wlr-randr"; license = licenses.mit; maintainers = with maintainers; [ ma27 ]; platforms = platforms.unix;