No nixpkgs activity in the past year. Has not responded in issues they were pinged in for two years, per Aleksanaa (I have not verified this myself): https://github.com/NixOS/nixpkgs/issues?q=sort%3Acreated-desc%20is%3Aissue%20involves%3Aperiklis. I also removed "with lib;" from meta where I saw it.
15 lines
188 B
Nix
15 lines
188 B
Nix
{
|
|
lib,
|
|
qtModule,
|
|
qtbase,
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtmacextras";
|
|
propagatedBuildInputs = [ qtbase ];
|
|
meta = {
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.darwin;
|
|
};
|
|
}
|