nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 399 B view raw
1{ 2 buildAstalModule, 3 astal3, 4 io, 5 6 meson, 7 ninja, 8 pkg-config, 9}: 10(buildAstalModule { 11 name = "gjs"; 12 sourceRoot = "lang/gjs"; 13 meta.description = "Astal module for GJS"; 14}).overrideAttrs 15 { 16 # Remove all unused here inputs 17 nativeBuildInputs = [ 18 meson 19 ninja 20 pkg-config 21 ]; 22 buildInputs = [ 23 astal3 24 io 25 ]; 26 propagatedBuildInputs = [ ]; 27 }