wmutils-core: add to tools/X11 (close #6585)
@vcunat fixed and cleaned this a little.
This commit is contained in:
parent
2d8f7883a9
commit
3d0a6819da
22
pkgs/tools/X11/wmutils-core/default.nix
Normal file
22
pkgs/tools/X11/wmutils-core/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, libxcb }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wmutils-core-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/wmutils/core/archive/v${version}.tar.gz";
|
||||
sha256 = "10vn56rbrjykcrjr06ki4qc12sri1ywrcvm89nmxlqhkxx4i239p";
|
||||
};
|
||||
|
||||
buildInputs = [ libxcb ];
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Set of window manipulation tools";
|
||||
homepage = https://github.com/wmutils/core;
|
||||
license = licenses.isc;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -13707,6 +13707,8 @@ let
|
||||
inherit (gnome2) zenity;
|
||||
};
|
||||
|
||||
wmutils-core = callPackage ../tools/X11/wmutils-core { };
|
||||
|
||||
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
|
||||
|
||||
x2x = callPackage ../tools/X11/x2x { };
|
||||
|
Loading…
Reference in New Issue
Block a user