Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 493 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "fpm"; 9 gemdir = ./.; 10 exes = [ "fpm" ]; 11 12 passthru.updateScript = bundlerUpdateScript "fpm"; 13 14 meta = with lib; { 15 description = "Tool to build packages for multiple platforms with ease"; 16 homepage = "https://github.com/jordansissel/fpm"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ 19 manveru 20 nicknovitski 21 ]; 22 platforms = platforms.unix; 23 mainProgram = "fpm"; 24 }; 25}