Merge pull request #166804 from Luflosi/fix-postcss-cli

authored by Sandro and committed by GitHub 93a139da 41e7bba5

+5 -1
+5 -1
pkgs/development/node-packages/default.nix
··· 343 wrapProgram "$out/bin/postcss" \ 344 --prefix NODE_PATH : ${self.postcss}/lib/node_modules \ 345 --prefix NODE_PATH : ${self.autoprefixer}/lib/node_modules 346 ''; 347 passthru.tests = { 348 simple-execution = pkgs.callPackage ./package-tests/postcss-cli.nix { 349 inherit (self) postcss-cli; 350 }; 351 }; 352 - meta.mainProgram = "postcss"; 353 }; 354 355 # To update prisma, please first update prisma-engines to the latest
··· 343 wrapProgram "$out/bin/postcss" \ 344 --prefix NODE_PATH : ${self.postcss}/lib/node_modules \ 345 --prefix NODE_PATH : ${self.autoprefixer}/lib/node_modules 346 + ln -s '${self.postcss}/lib/node_modules/postcss' "$out/lib/node_modules/postcss" 347 ''; 348 passthru.tests = { 349 simple-execution = pkgs.callPackage ./package-tests/postcss-cli.nix { 350 inherit (self) postcss-cli; 351 }; 352 }; 353 + meta = { 354 + mainProgram = "postcss"; 355 + maintainers = with lib.maintainers; [ Luflosi ]; 356 + }; 357 }; 358 359 # To update prisma, please first update prisma-engines to the latest