icewm: cleanup
This commit is contained in:
parent
1c67e5a358
commit
548cba4ab5
@ -1,8 +1,8 @@
|
|||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, perl
|
|
||||||
, asciidoc
|
, asciidoc
|
||||||
, expat
|
, expat
|
||||||
, fontconfig
|
, fontconfig
|
||||||
@ -34,21 +34,26 @@
|
|||||||
, libxcb
|
, libxcb
|
||||||
, mkfontdir
|
, mkfontdir
|
||||||
, pcre
|
, pcre
|
||||||
|
, perl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "icewm";
|
pname = "icewm";
|
||||||
version = "2.1.2";
|
version = "2.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bbidulock";
|
owner = "bbidulock";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-n9mLD1WrHsO9W1rxopFQENxQEHp/sxuixV3PxLp2vOY=";
|
hash = "sha256-STM8t311lf0xIqs2Onmwg48xgE7V9VZrUfJrUzYRxL4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config perl asciidoc ];
|
nativeBuildInputs = [
|
||||||
|
asciidoc
|
||||||
|
cmake
|
||||||
|
perl
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
expat
|
expat
|
||||||
fontconfig
|
fontconfig
|
||||||
@ -90,6 +95,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
homepage = "https://www.ice-wm.org/";
|
||||||
description = "A simple, lightweight X window manager";
|
description = "A simple, lightweight X window manager";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
IceWM is a window manager for the X Window System. The goal of IceWM is
|
IceWM is a window manager for the X Window System. The goal of IceWM is
|
||||||
@ -104,8 +110,7 @@ stdenv.mkDerivation rec {
|
|||||||
includes an optional external background wallpaper manager with
|
includes an optional external background wallpaper manager with
|
||||||
transparency support, a simple session manager and a system tray.
|
transparency support, a simple session manager and a system tray.
|
||||||
'';
|
'';
|
||||||
homepage = "https://www.ice-wm.org/";
|
license = licenses.lgpl2Only;
|
||||||
license = licenses.lgpl2;
|
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user