mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #87953 from ccellado/glpaper-unstable
This commit is contained in:
commit
c19fa9be5e
|
@ -1280,6 +1280,12 @@
|
|||
githubId = 64804;
|
||||
name = "Dennis Gosnell";
|
||||
};
|
||||
ccellado = {
|
||||
email = "annplague@gmail.com";
|
||||
github = "ccellado";
|
||||
githubId = 44584960;
|
||||
name = "Denis Khalmatov";
|
||||
};
|
||||
ceedubs = {
|
||||
email = "ceedubs@gmail.com";
|
||||
github = "ceedubs";
|
||||
|
|
29
pkgs/development/tools/glpaper/default.nix
Normal file
29
pkgs/development/tools/glpaper/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchhg, meson, ninja, pkg-config, wlroots, wayland, wayland-protocols
|
||||
, libX11, libGL }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "glpaper";
|
||||
version = "unstable-2020-03-30";
|
||||
|
||||
src = fetchhg {
|
||||
url = "https://hg.sr.ht/~scoopta/glpaper";
|
||||
rev = "a95db77088dfb5636a87f3743fc9b5eca70c1ae2";
|
||||
sha256 = "04y12910wvhy4aqx2sa63dy9l6nbs7b77yqpdhc96x2b3mgzgjfs";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = [
|
||||
wayland
|
||||
libX11 # required by libglvnd
|
||||
libGL
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -1862,6 +1862,8 @@ in
|
|||
|
||||
gixy = callPackage ../tools/admin/gixy { };
|
||||
|
||||
glpaper = callPackage ../development/tools/glpaper { };
|
||||
|
||||
gllvm = callPackage ../development/tools/gllvm { };
|
||||
|
||||
glide = callPackage ../development/tools/glide { };
|
||||
|
|
Loading…
Reference in a new issue