nixpkgs/pkgs/development/tools/glpaper/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
865 B
Nix
Raw Normal View History

2023-09-01 18:20:36 +00:00
{ lib, stdenv, fetchFromSourcehut, meson, ninja, pkg-config, wayland
2020-05-16 20:26:19 +00:00
, libX11, libGL }:
2020-10-31 12:20:43 +00:00
stdenv.mkDerivation rec {
pname = "glpaper";
version = "unstable-2022-05-15";
2020-05-16 20:26:19 +00:00
2020-10-31 12:20:43 +00:00
src = fetchFromSourcehut {
owner = "~scoopta";
repo = pname;
vc = "hg";
rev = "f89e60b7941fb60f1069ed51af9c5bb4917aab35";
sha256 = "sha256-E7FKjt3NL0aAEibfaq+YS2IVvpjNjInA+Rs8SU63/3M=";
2020-05-16 20:26:19 +00:00
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [
wayland
libX11 # required by libglvnd
libGL
];
meta = with lib; {
2020-05-16 20:26:19 +00:00
description =
"Wallpaper program for wlroots based Wayland compositors such as sway that allows you to render glsl shaders as your wallpaper";
homepage = "https://hg.sr.ht/~scoopta/glpaper";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ccellado ];
};
}