Unverified Commit 7bdb5ae1 authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

Merge: wlr-randr: 0.4.1 -> 0.5.0 (#381688)

parents a881767c d016fedb
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromSourcehut,
  fetchFromGitLab,
  meson,
  ninja,
  pkg-config,
@@ -11,13 +11,14 @@

stdenv.mkDerivation rec {
  pname = "wlr-randr";
  version = "0.4.1";
  version = "0.5.0";

  src = fetchFromSourcehut {
    owner = "~emersion";
    repo = pname;
  src = fetchFromGitLab {
    domain = "gitlab.freedesktop.org";
    owner = "emersion";
    repo = "wlr-randr";
    rev = "v${version}";
    hash = "sha256-2kWTVAi4hq2d9jQ6yBLVzm3x7n/oSvBdZ45WyjhXhc4=";
    hash = "sha256-lHOGpY0IVnR8QdSqJbtIA4FkhmQ/zDiFNqqXyj8iw/s=";
  };

  strictDeps = true;
@@ -34,7 +35,7 @@ stdenv.mkDerivation rec {

  meta = with lib; {
    description = "Xrandr clone for wlroots compositors";
    homepage = "https://git.sr.ht/~emersion/wlr-randr";
    homepage = "https://gitlab.freedesktop.org/emersion/wlr-randr";
    license = licenses.mit;
    maintainers = with maintainers; [ ma27 ];
    platforms = platforms.linux;