-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlwe.nix
53 lines (48 loc) · 1.06 KB
/
lwe.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
pkgs ? import <nixpkgs> {}
}:
pkgs.stdenv.mkDerivation {
pname = "linux-wallpaperengine";
version = "unstable-2023-09-23";
src = pkgs.fetchFromGitHub {
owner = "Almamu";
repo = "linux-wallpaperengine";
# upstream lacks versioned releases
rev = "21c38d9fd1d3d89376c870cec5c5e5dc7086bc3c";
hash = "sha256-bZlMHlNKSydh9eGm5cFSEtv/RV9sA5ABs99uurblBZY=";
};
nativeBuildInputs = with pkgs; [
cmake
pkg-config
];
buildInputs = with pkgs; [
ffmpeg
libglut
freeimage
glew
glfw
glm
libGL
libpulseaudio
xorg.libX11
xorg.libXau
xorg.libXdmcp
xorg.libXext
xorg.libXrandr
xorg.libXpm
xorg.libXxf86vm
mpv
lz4
SDL2
SDL2_mixer.all
zlib
];
meta = with pkgs; {
description = "Wallpaper Engine backgrounds for Linux";
homepage = "https://github.com/Almamu/linux-wallpaperengine";
license = lib.licenses.gpl3Only;
mainProgram = "linux-wallpaperengine";
maintainers = with lib.maintainers; [ eclairevoyant ];
platforms = lib.platforms.linux;
};
}