mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
oguri: init at unstable-2020-12-19
This commit is contained in:
parent
973473e249
commit
f529ec396f
39
pkgs/tools/wayland/oguri/default.nix
Normal file
39
pkgs/tools/wayland/oguri/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, meson
|
||||
, ninja
|
||||
, cairo
|
||||
, gdk-pixbuf
|
||||
, wayland
|
||||
, wayland-protocols
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "oguri";
|
||||
version = "unstable-2020-12-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vilhalmer";
|
||||
repo = pname;
|
||||
rev = "6937fee10a9b0ef3ad8f94f606c0e0d9e7dec564";
|
||||
sha256 = "sXNvpI/YPDPd2cXQAfRO4ut21gSCXxbo1DpaZmHJDYQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config meson ninja ];
|
||||
buildInputs = [
|
||||
cairo
|
||||
gdk-pixbuf
|
||||
wayland
|
||||
wayland-protocols
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/vilhalmer/oguri/";
|
||||
description = "A very nice animated wallpaper daemon for Wayland compositors";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -1968,6 +1968,8 @@ in
|
||||
|
||||
kanshi = callPackage ../tools/wayland/kanshi { };
|
||||
|
||||
oguri = callPackage ../tools/wayland/oguri { };
|
||||
|
||||
slurp = callPackage ../tools/wayland/slurp { };
|
||||
|
||||
wayland-utils = callPackage ../tools/wayland/wayland-utils { };
|
||||
|
Loading…
Reference in New Issue
Block a user