mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 06:05:13 +00:00
8 lines
243 B
Nix
8 lines
243 B
Nix
{ qtSubmodule, lib, copyPathsToStore, qtscript, qtsvg, qtwebkit, qtxmlpatterns }:
|
|
|
|
qtSubmodule {
|
|
name = "qtquick1";
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
qtInputs = [ qtscript qtsvg qtwebkit qtxmlpatterns ];
|
|
}
|