mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
16 lines
215 B
Nix
16 lines
215 B
Nix
{ qtModule
|
|
, qtbase
|
|
, libwebp
|
|
, jasper
|
|
, libmng
|
|
, zlib
|
|
, pkg-config
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtsvg";
|
|
qtInputs = [ qtbase ];
|
|
buildInputs = [ libwebp jasper libmng zlib ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|