File tree Expand file tree Collapse file tree 5 files changed +2
-200
lines changed Expand file tree Collapse file tree 5 files changed +2
-200
lines changed Original file line number Diff line number Diff line change @@ -1419,7 +1419,7 @@ self: super: builtins.intersectAttrs super {
14191419 tailwind = addBuildDepend
14201420 # Overrides for tailwindcss copied from:
14211421 # https://github.com/EmaApps/emanote/blob/master/nix/tailwind.nix
1422- ( pkgs . nodePackages . tailwindcss . overrideAttrs ( oa : {
1422+ ( pkgs . tailwindcss . overrideAttrs ( oa : {
14231423 plugins = [
14241424 pkgs . nodePackages . "@tailwindcss/aspect-ratio"
14251425 pkgs . nodePackages . "@tailwindcss/forms"
Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ mapAliases {
183183 surge = pkgs . surge-cli ; # Added 2023-09-08
184184 inherit ( pkgs ) svelte-language-server ; # Added 2024-05-12
185185 swagger = throw "swagger was removed because it was broken and abandoned upstream" ; # added 2023-09-09
186+ inherit ( pkgs ) tailwindcss ; # added 2024-12-04
186187 teck-programmer = throw "teck-programmer was removed because it was broken and unmaintained" ; # added 2024-08-23
187188 tedicross = throw "tedicross was removed because it was broken" ; # added 2023-09-09
188189 inherit ( pkgs ) terser ; # Added 2023-08-31
Original file line number Diff line number Diff line change 166166, " speed-test"
167167, " svelte-check"
168168, " svgo"
169- , " tailwindcss"
170169, " tern"
171170, " thelounge-plugin-closepms"
172171, " thelounge-plugin-giphy"
Original file line number Diff line number Diff line change @@ -258,27 +258,6 @@ final: prev: {
258258 name = "rush" ;
259259 } ;
260260
261- tailwindcss = prev . tailwindcss . override {
262- plugins = [ ] ;
263- nativeBuildInputs = [ pkgs . buildPackages . makeWrapper ] ;
264- postInstall = ''
265- nodePath=""
266- for p in "$out" "${ final . postcss } " $plugins; do
267- nodePath="$nodePath'' ${nodePath:+:}$p/lib/node_modules"
268- done
269- wrapProgram "$out/bin/tailwind" \
270- --prefix NODE_PATH : "$nodePath"
271- wrapProgram "$out/bin/tailwindcss" \
272- --prefix NODE_PATH : "$nodePath"
273- unset nodePath
274- '' ;
275- passthru . tests = {
276- simple-execution = callPackage ./package-tests/tailwindcss.nix {
277- inherit ( final ) tailwindcss ;
278- } ;
279- } ;
280- } ;
281-
282261 thelounge-plugin-closepms = prev . thelounge-plugin-closepms . override {
283262 nativeBuildInputs = [ pkgs . node-pre-gyp ] ;
284263 } ;
You can’t perform that action at this time.
0 commit comments