nixpkgs/pkgs/development/libraries/qt-5/5.9/qtsvg.nix

11 lines
187 B
Nix
Raw Normal View History

{ qtSubmodule, qtbase }:
qtSubmodule {
name = "qtsvg";
qtInputs = [ qtbase ];
2017-05-18 16:19:42 -07:00
outputs = [ "out" "dev" "bin" ];
postInstall = ''
moveToOutput "$qtPluginPrefix" "$bin"
'';
}