nixpkgs/pkgs/development/tools/corundum/default.nix

16 lines
361 B
Nix
Raw Normal View History

2017-06-28 06:33:18 +01:00
{ lib, bundlerApp }:
2017-06-11 01:11:37 +01:00
bundlerApp {
pname = "corundum";
2017-06-11 01:11:37 +01:00
gemdir = ./.;
exes = [ "corundum-skel" ];
meta = with lib; {
2017-06-11 01:11:37 +01:00
description = "Tool and libraries for maintaining Ruby gems.";
2017-07-03 01:55:41 +01:00
homepage = https://github.com/nyarly/corundum;
2017-06-11 01:11:37 +01:00
license = licenses.mit;
maintainers = [ maintainers.nyarly ];
platforms = platforms.unix;
};
}