11 lines
142 B
Nix
11 lines
142 B
Nix
{ qtModule, qtbase }:
|
|
|
|
qtModule {
|
|
pname = "qtsvg";
|
|
propagatedBuildInputs = [ qtbase ];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"bin"
|
|
];
|
|
}
|