1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #202280 from mateodd25/swww

swww: init at 0.7.2
This commit is contained in:
Norbert Melzer 2023-03-09 12:37:39 +01:00 committed by GitHub
commit d8179d810c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

View file

@ -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";

View 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;
};
}

View file

@ -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 { };