mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
commit
d8179d810c
|
@ -9270,6 +9270,12 @@
|
|||
githubId = 854770;
|
||||
name = "Matej Cotman";
|
||||
};
|
||||
mateodd25 = {
|
||||
email = "mateodd@icloud.com";
|
||||
github = "mateodd25";
|
||||
githubId = 854770;
|
||||
name = "Mateo Diaz";
|
||||
};
|
||||
mathnerd314 = {
|
||||
email = "mathnerd314.gph+hs@gmail.com";
|
||||
github = "Mathnerd314";
|
||||
|
|
25
pkgs/tools/wayland/swww/default.nix
Normal file
25
pkgs/tools/wayland/swww/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ config, lib, pkgs, fetchFromGitHub, rustPlatform, pkg-config, lz4, libxkbcommon }:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "swww";
|
||||
version = "0.7.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Horus645";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-1SmCeIlcjOX3yCvpfqQ82uq4h2xlGhX9OCwKb6jGK78=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-08YM9yTCRJPHdOc1+7F3guYiP3y1WSi3/hzlDRVpitc=";
|
||||
buildInputs = [ lz4 libxkbcommon ];
|
||||
doCheck = false; # Integration tests do not work in sandbox environment
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Efficient animated wallpaper daemon for wayland, controlled at runtime";
|
||||
homepage = "https://github.com/Horus645/swww";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ mateodd25 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4189,6 +4189,8 @@ with pkgs;
|
|||
|
||||
swaytools = python3Packages.callPackage ../tools/wayland/swaytools { };
|
||||
|
||||
swww = callPackage ../tools/wayland/swww { };
|
||||
|
||||
wayland-utils = callPackage ../tools/wayland/wayland-utils { };
|
||||
|
||||
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
|
||||
|
|
Loading…
Reference in a new issue