wmutils-opt: init at v1.0

This commit is contained in:
Adrian Pistol 2017-01-30 20:42:16 +00:00
parent 2eb8163fae
commit f6e2772cd3
3 changed files with 28 additions and 0 deletions

View file

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

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

View file

@ -17879,6 +17879,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 { };