mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
nodejs,
|
|
pnpm_9,
|
|
fetchFromGitHub,
|
|
callPackage,
|
|
nix-update-script
|
|
}: stdenv.mkDerivation (finalAttrs: {
|
|
pname = "autoprefixer";
|
|
version = "10.4.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "postcss";
|
|
repo = "autoprefixer";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-CGAUv6qzpcjDPcW7Vsak0iYC6GOJAkKLciVnxYcOeus=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
nodejs
|
|
pnpm_9.configHook
|
|
];
|
|
|
|
pnpmDeps = pnpm_9.fetchDeps {
|
|
inherit (finalAttrs) pname version src;
|
|
hash = "sha256-Gu2DRDx0YRlSb+EInOfmAOYKvOba6Lq1wkOW9t9fnbA=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
mv bin/ $out
|
|
mv lib/ $out
|
|
mv node_modules/ $out
|
|
mv data/ $out
|
|
mv package.json $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
patchShebangs $out/bin/autoprefixer
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
simple-execution = callPackage ./tests/simple-execution.nix { };
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website";
|
|
homepage = "https://github.com/postcss/autoprefixer";
|
|
changelog = "https://github.com/postcss/autoprefixer/releases/tag/${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "autoprefixer";
|
|
maintainers = with lib.maintainers; [ pyrox0 ];
|
|
};
|
|
})
|