mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Add xwinmosaic window switcher
This commit is contained in:
parent
649b0affe1
commit
d9354c6a2a
23
pkgs/tools/X11/xwinmosaic/default.nix
Normal file
23
pkgs/tools/X11/xwinmosaic/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{stdenv, fetchgit, gtk2, cmake, pkgconfig}:
|
||||
let
|
||||
buildInputs = [
|
||||
gtk2 cmake pkgconfig
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.4.2";
|
||||
name = "xwinmosaic-${version}";
|
||||
inherit buildInputs;
|
||||
src = fetchgit {
|
||||
url = "https://github.com/soulthreads/xwinmosaic/";
|
||||
rev = "refs/tags/v0.4.2";
|
||||
sha256 = "0ddriqx4idyp55v8js5xazmhl09jwkmnv5nlfzhs2cpvshcj56ri";
|
||||
};
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''X window switcher drawing a colourful grid'';
|
||||
license = stdenv.lib.licenses.bsd2 ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -3414,6 +3414,8 @@ let
|
||||
inherit (xlibs) libXt libXaw libXtst xextproto libXi libXpm gccmakedep;
|
||||
};
|
||||
|
||||
xwinmosaic = callPackage ../tools/X11/xwinmosaic {};
|
||||
|
||||
# To expose more packages for Yi, override the extraPackages arg.
|
||||
yi = callPackage ../applications/editors/yi/wrapper.nix { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user