mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Adding 'tabbed'. I think Alexander Foremny wanted to send this patch
long ago, but I could not find it. svn path=/nixpkgs/trunk/; revision=33414
This commit is contained in:
parent
343fb0be1e
commit
f389901fd2
28
pkgs/applications/window-managers/tabbed/default.nix
Normal file
28
pkgs/applications/window-managers/tabbed/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{stdenv, fetchhg, xproto, libX11, patches ? []}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tabbed-20120209";
|
||||||
|
|
||||||
|
src = fetchhg {
|
||||||
|
url = http://hg.suckless.org/tabbed;
|
||||||
|
tag = "d7542a6f6dc5";
|
||||||
|
sha256 = "1963jsazfmh5k7923c1mfwppz1xbh48z16j0sa64fiscq22as2gj";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Allow users set their own list of patches
|
||||||
|
inherit patches;
|
||||||
|
|
||||||
|
buildInputs = [ xproto libX11 ];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
export makeFlags="PREFIX=$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://tools.suckless.org/tabbed;
|
||||||
|
description = "Simple generic tabbed fronted to xembed aware applications";
|
||||||
|
license="MIT"
|
||||||
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -7354,6 +7354,8 @@ let
|
|||||||
# linux only by now
|
# linux only by now
|
||||||
synergy = callPackage ../applications/misc/synergy { };
|
synergy = callPackage ../applications/misc/synergy { };
|
||||||
|
|
||||||
|
tabbed = callPackage ../applications/window-managers/tabbed { };
|
||||||
|
|
||||||
tahoelafs = callPackage ../tools/networking/p2p/tahoe-lafs {
|
tahoelafs = callPackage ../tools/networking/p2p/tahoe-lafs {
|
||||||
inherit (pythonPackages) twisted foolscap simplejson nevow zfec
|
inherit (pythonPackages) twisted foolscap simplejson nevow zfec
|
||||||
pycryptopp pysqlite darcsver setuptoolsTrial setuptoolsDarcs
|
pycryptopp pysqlite darcsver setuptoolsTrial setuptoolsDarcs
|
||||||
|
Loading…
Reference in New Issue
Block a user