mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Fluxbox: new package (1.3.5)
This commit is contained in:
parent
e4752d7877
commit
fe270c011c
39
pkgs/applications/window-managers/fluxbox/default.nix
Normal file
39
pkgs/applications/window-managers/fluxbox/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchurl, pkgconfig
|
||||
, freetype, fribidi
|
||||
, libXext, libXft, libXpm, libXrandr, libXrender, xextproto
|
||||
, libXinerama
|
||||
, imlib2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "fluxbox-${version}";
|
||||
version = "1.3.5";
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig
|
||||
freetype fribidi
|
||||
libXext libXft libXpm libXrandr libXrender xextproto
|
||||
libXinerama
|
||||
imlib2
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/fluxbox/${name}.tar.bz2";
|
||||
sha256 = "164dd7bf59791d09a1e729a4fcd5e7347a1004ba675629860a5cf1a271c32983";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Full-featured, light-resource X window manager.";
|
||||
longDescription = ''
|
||||
Fluxbox is a X window manager based on Blackbox 0.61.1 window manager sources.
|
||||
It is very light on resources and easy to handle but yet full of features to make an easy,
|
||||
and extremely fast, desktop experience. It is written in C++ and licensed under MIT license.
|
||||
'';
|
||||
homepage = http://fluxbox.org/;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
# Many thanks Jack Ryan from Nix-dev mailing list!
|
@ -8707,6 +8707,8 @@ let
|
||||
debug = config.flashplayer.debug or false;
|
||||
};
|
||||
|
||||
fluxbox = callPackage ../applications/window-managers/fluxbox { };
|
||||
|
||||
freecad = callPackage ../applications/graphics/freecad {
|
||||
opencascade = opencascade_6_5;
|
||||
inherit (pythonPackages) matplotlib pycollada;
|
||||
|
Loading…
Reference in New Issue
Block a user