Unverified Commit 8d51522a authored by pennae's avatar pennae Committed by GitHub
Browse files

Merge pull request #244918 from atorres1985-contrib/pru

pru: rewrite
parents 866c4b39 cbf63ff1
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -3,12 +3,12 @@
, bundlerUpdateScript
}:

bundlerApp rec {
bundlerApp {
  pname = "pru";
  gemdir = ./.;
  exes = [ "pru" ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/grosser/pru";
    description = "Pipeable Ruby";
    longDescription = ''
@@ -16,9 +16,9 @@ bundlerApp rec {
      higher-level replacement of typical text processing tools (like sed, awk,
      grep etc.).
    '';
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ AndersonTorres ];
  };

  passthru.updateScript = bundlerUpdateScript pname;
  passthru.updateScript = bundlerUpdateScript "pru";
}