mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
smooth: unvendor all the things
This commit is contained in:
parent
b81091dce6
commit
11c29642f0
|
@ -3,9 +3,17 @@
|
|||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
|
||||
, gtk3
|
||||
, bzip2
|
||||
, curl
|
||||
, fribidi
|
||||
, gtk3
|
||||
, iconv
|
||||
, libcpuid
|
||||
, libjpeg
|
||||
, libpng
|
||||
, libwebp
|
||||
, libxml2
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -25,12 +33,21 @@ stdenv.mkDerivation rec {
|
|||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
"config=systemlibbz2,systemlibcpuid,systemlibcurl,systemlibfribidi,systemlibiconv,systemlibjpeg,systemlibpng,systemlibwebp,systemlibxml2,systemzlib"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
bzip2
|
||||
curl
|
||||
fribidi
|
||||
gtk3
|
||||
iconv
|
||||
libcpuid
|
||||
libjpeg
|
||||
libpng
|
||||
libwebp
|
||||
libxml2
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue