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