mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
WindowMaker: adding support for more image formats
Now Windowmaker is built with support for almost all image formats (except WEBP - its autodetection is failing)
This commit is contained in:
parent
b9cc04329b
commit
1c0c07c2ed
@ -1,4 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libX11, libXft, libXmu }:
|
{ stdenv, fetchurl, pkgconfig
|
||||||
|
, libX11, libXext, libXft, libXmu, libXinerama, libXrandr, libXpm
|
||||||
|
, imagemagick, libpng, libjpeg, libexif, libtiff, libungif, libwebp }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "windowmaker-${version}";
|
name = "windowmaker-${version}";
|
||||||
@ -10,7 +12,16 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1i3dw1yagsa3rs9x2na2ynqlgmbahayws0kz4vl00fla6550nns3";
|
sha256 = "1i3dw1yagsa3rs9x2na2ynqlgmbahayws0kz4vl00fla6550nns3";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libX11 libXft libXmu ];
|
buildInputs = [ pkgconfig
|
||||||
|
libX11 libXext libXft libXmu libXinerama libXrandr libXpm
|
||||||
|
imagemagick libpng libjpeg libexif libtiff libungif libwebp ];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--with-x"
|
||||||
|
"--enable-modelock"
|
||||||
|
"--enable-randr"
|
||||||
|
"--enable-magick"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://windowmaker.org/;
|
homepage = http://windowmaker.org/;
|
||||||
@ -27,3 +38,5 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# TODO: investigate support for WEBP (its autodetection is failing)
|
||||||
|
Loading…
Reference in New Issue
Block a user