mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
13 lines
92 B
Nix
13 lines
92 B
Nix
{
|
|
gtk3,
|
|
}:
|
|
|
|
{
|
|
buildInputs ? [ ],
|
|
...
|
|
}:
|
|
|
|
{
|
|
buildInputs = buildInputs ++ [ gtk3 ];
|
|
}
|