Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 29 lines 524 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "sass"; 9 gemdir = ./.; 10 exes = [ 11 "sass" 12 "sass-convert" 13 "scss" 14 ]; 15 16 passthru.updateScript = bundlerUpdateScript "sass"; 17 18 meta = with lib; { 19 description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS"; 20 homepage = "https://sass-lang.com"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ 23 romildo 24 manveru 25 nicknovitski 26 ]; 27 platforms = platforms.unix; 28 }; 29}