nixpkgs/pkgs/development/libraries/qt-5/5.8/qtsvg.nix
2017-06-18 08:44:42 -05:00

11 lines
187 B
Nix

{ qtSubmodule, qtbase }:
qtSubmodule {
name = "qtsvg";
qtInputs = [ qtbase ];
outputs = [ "out" "dev" "bin" ];
postInstall = ''
moveToOutput "$qtPluginPrefix" "$bin"
'';
}