mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
63 lines
1.8 KiB
Nix
63 lines
1.8 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, stdenv
|
|
, runCommand
|
|
, tailwindcss
|
|
,
|
|
}:
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
throwSystem = throw "tailwindcss has not been packaged for ${system} yet.";
|
|
|
|
plat = {
|
|
aarch64-darwin = "macos-arm64";
|
|
aarch64-linux = "linux-arm64";
|
|
armv7l-linux = "linux-armv7";
|
|
x86_64-darwin = "macos-x64";
|
|
x86_64-linux = "linux-x64";
|
|
}.${system} or throwSystem;
|
|
|
|
hash = {
|
|
aarch64-darwin = "sha256-Wsys6Iagq/dwOKb+htMWosLL51blPxxq3PX8ioZ1UZw=";
|
|
aarch64-linux = "sha256-vXvhtfHd/Pg4Pv6X23Y9nC1OFUeju5vBn9SEOaI5G6E=";
|
|
armv7l-linux = "sha256-ZCqvztsUD+dom6HL/IejSjn9Cy/Rwnn7/QFxtW0XFoU=";
|
|
x86_64-darwin = "sha256-vVbDvu3R66AwCZgg75k1Mjp2oVsrkdMXtqHA5sdACEo=";
|
|
x86_64-linux = "sha256-POpm9f2HmGU4cBpVHHNCwpoK4+MTnu1Xxb2RUfZtq5Y=";
|
|
}.${system} or throwSystem;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "tailwindcss";
|
|
version = "3.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/tailwindlabs/tailwindcss/releases/download/v${version}/tailwindcss-${plat}";
|
|
inherit hash;
|
|
};
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
dontFixup = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ${src} $out/bin/tailwindcss
|
|
chmod 755 $out/bin/tailwindcss
|
|
'';
|
|
|
|
passthru.tests.helptext = runCommand "tailwindcss-test-helptext" { } ''
|
|
${tailwindcss}/bin/tailwindcss --help > $out
|
|
'';
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tool for the CSS framework with composable CSS classes, standalone CLI";
|
|
homepage = "https://tailwindcss.com/blog/standalone-cli";
|
|
license = licenses.mit;
|
|
sourceProvenance = [ sourceTypes.binaryNativeCode ];
|
|
maintainers = [ maintainers.adamcstephens ];
|
|
mainProgram = "tailwindcss";
|
|
platforms = platforms.darwin ++ platforms.linux;
|
|
};
|
|
}
|