Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 19 lines 479 B view raw
1{ lib, bundlerApp, bundlerUpdateScript, nixosTests }: 2 3bundlerApp rec { 4 pname = "gemstash"; 5 gemdir = ./.; 6 exes = [ pname ]; 7 8 passthru = { 9 updateScript = bundlerUpdateScript pname; 10 tests = { inherit (nixosTests) gemstash; }; 11 }; 12 13 meta = with lib; { 14 description = "A cache for RubyGems.org and a private gem server"; 15 homepage = "https://github.com/rubygems/gemstash"; 16 license = licenses.mit; 17 maintainers = [ maintainers.viraptor ]; 18 }; 19}