nixpkgs/pkgs/applications/window-managers/tabbed/default.nix
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00

28 lines
707 B
Nix

{stdenv, fetchhg, xproto, libX11, patches ? []}:
stdenv.mkDerivation rec {
name = "tabbed-20120209";
src = fetchhg {
url = http://hg.suckless.org/tabbed;
rev = "d7542a6f6dc5";
sha256 = "1963jsazfmh5k7923c1mfwppz1xbh48z16j0sa64fiscq22as2gj";
};
# Allow users set their own list of patches
inherit patches;
buildInputs = [ xproto libX11 ];
preInstall = ''
export makeFlags="PREFIX=$out"
'';
meta = with stdenv.lib; {
homepage = http://tools.suckless.org/tabbed;
description = "Simple generic tabbed fronted to xembed aware applications";
license = licenses.mit;
maintainers = with maintainers; [ viric ];
platforms = with platforms; linux;
};
}