Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildNpmPackage, fetchFromGitHub, lib, ... }: 2 3buildNpmPackage rec { 4 pname = "rtlcss"; 5 version = "4.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "MohammadYounes"; 9 repo = "rtlcss"; 10 rev = "v${version}"; 11 hash = "sha256-KdAf7jzt8o/YEzT/bLCXj546HX0oC90kr44u3p3qv/k="; 12 }; 13 14 npmDepsHash = "sha256-ghVgvw55w7T9WxokYtlFSgCfGvcOxFzm2wQIFi+6uBY="; 15 16 dontNpmBuild = true; 17 18 meta = with lib; { 19 description = "Framework for converting Left-To-Right (LTR) Cascading Style Sheets(CSS) to Right-To-Left (RTL)"; 20 homepage = "https://rtlcss.com"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ ]; 23 }; 24}