mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Adding xbindkeys (now with all the files)
svn path=/nixpkgs/trunk/; revision=26448
This commit is contained in:
parent
f6e3d3e10d
commit
4fce3aceb0
20
pkgs/tools/X11/xbindkeys/default.nix
Normal file
20
pkgs/tools/X11/xbindkeys/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, libX11, guile }:
|
||||
|
||||
let version = "1.8.5"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "xbindkeys-${version}";
|
||||
src = fetchurl {
|
||||
url = "http://www.nongnu.org/xbindkeys/xbindkeys-${version}.tar.gz";
|
||||
sha256 = "10gwyvj69yyqgk1xxbrl37gx3c3jfpgr92mz62b1x5q6jiq7hbyn";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 guile ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.nongnu.org/xbindkeys/xbindkeys.html;
|
||||
description = "Launch shell commands with your keyboard or your mouse under X Window";
|
||||
license = "GPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -6846,8 +6846,7 @@ let
|
||||
|
||||
xawtv = callPackage ../applications/video/xawtv { };
|
||||
|
||||
/* Commented until I can commit the default.nix I forgot
|
||||
xbindkeys = callPackage ../tools/X11/xbindkeys { };*/
|
||||
xbindkeys = callPackage ../tools/X11/xbindkeys { };
|
||||
|
||||
xchat = callPackage ../applications/networking/irc/xchat { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user