forked from mirrors/nixpkgs
icewm: 2.3.4 -> 2.6.0
This commit is contained in:
parent
0d0a612f40
commit
a1479b3998
|
@ -1,9 +1,8 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
|
||||||
, pkg-config
|
|
||||||
, asciidoc
|
, asciidoc
|
||||||
|
, cmake
|
||||||
, expat
|
, expat
|
||||||
, fontconfig
|
, fontconfig
|
||||||
, freetype
|
, freetype
|
||||||
|
@ -11,6 +10,7 @@
|
||||||
, gdk-pixbuf
|
, gdk-pixbuf
|
||||||
, gdk-pixbuf-xlib
|
, gdk-pixbuf-xlib
|
||||||
, gettext
|
, gettext
|
||||||
|
, giflib
|
||||||
, glib
|
, glib
|
||||||
, imlib2
|
, imlib2
|
||||||
, libICE
|
, libICE
|
||||||
|
@ -30,22 +30,22 @@
|
||||||
, libpthreadstubs
|
, libpthreadstubs
|
||||||
, libsndfile
|
, libsndfile
|
||||||
, libtiff
|
, libtiff
|
||||||
, giflib
|
|
||||||
, libxcb
|
, libxcb
|
||||||
, mkfontdir
|
, mkfontdir
|
||||||
, pcre
|
, pcre
|
||||||
, perl
|
, perl
|
||||||
|
, pkg-config
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "icewm";
|
pname = "icewm";
|
||||||
version = "2.3.4";
|
version = "2.6.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ice-wm";
|
owner = "ice-wm";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-UyLefj0eY/m3Of51NdhMNMq3z+kaLK28zDe63hbDK5A=";
|
hash = "sha256-R06tiWS9z6K5Nbi+vvk7DyozpcFdrHleMeh7Iq/FfHQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -62,6 +62,7 @@ stdenv.mkDerivation rec {
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
gdk-pixbuf-xlib
|
gdk-pixbuf-xlib
|
||||||
gettext
|
gettext
|
||||||
|
giflib
|
||||||
glib
|
glib
|
||||||
imlib2
|
imlib2
|
||||||
libICE
|
libICE
|
||||||
|
@ -81,13 +82,15 @@ stdenv.mkDerivation rec {
|
||||||
libpthreadstubs
|
libpthreadstubs
|
||||||
libsndfile
|
libsndfile
|
||||||
libtiff
|
libtiff
|
||||||
giflib
|
|
||||||
libxcb
|
libxcb
|
||||||
mkfontdir
|
mkfontdir
|
||||||
pcre
|
pcre
|
||||||
];
|
];
|
||||||
|
|
||||||
cmakeFlags = [ "-DPREFIX=$out" "-DCFGDIR=/etc/icewm" ];
|
cmakeFlags = [
|
||||||
|
"-DPREFIX=$out"
|
||||||
|
"-DCFGDIR=/etc/icewm"
|
||||||
|
];
|
||||||
|
|
||||||
# install legacy themes
|
# install legacy themes
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue