mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
commit
682e7a3643
|
@ -495,6 +495,7 @@
|
|||
vcunat = "Vladimír Čunát <vcunat@gmail.com>";
|
||||
vdemeester = "Vincent Demeester <vincent@sbr.pm>";
|
||||
veprbl = "Dmitry Kalinkin <veprbl@gmail.com>";
|
||||
vifino = "Adrian Pistol <vifino@tty.sh>";
|
||||
viric = "Lluís Batlle i Rossell <viric@viric.name>";
|
||||
vizanto = "Danny Wilson <danny@prime.vc>";
|
||||
vklquevs = "vklquevs <vklquevs@gmail.com>";
|
||||
|
|
25
pkgs/tools/X11/wmutils-opt/default.nix
Normal file
25
pkgs/tools/X11/wmutils-opt/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub, libxcb }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wmutils-opt-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wmutils";
|
||||
repo = "opt";
|
||||
rev = "v${version}";
|
||||
sha256 = "0gd05qsir1lnzfrbnfh08qwsryz7arwj20f886nqh41m87yqaljz";
|
||||
};
|
||||
|
||||
buildInputs = [ libxcb ];
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Optional addons to wmutils";
|
||||
homepage = https://github.com/wmutils/opt;
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ vifino ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -17880,6 +17880,8 @@ with pkgs;
|
|||
|
||||
wmutils-core = callPackage ../tools/X11/wmutils-core { };
|
||||
|
||||
wmutils-opt = callPackage ../tools/X11/wmutils-opt { };
|
||||
|
||||
wraith = callPackage ../applications/networking/irc/wraith { };
|
||||
|
||||
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
|
||||
|
|
Loading…
Reference in a new issue