about summary refs log tree commit diff
path: root/pkgs/by-name/ma/maid/package.nix
blob: f7f237d085fdafd5afd784605bc15bc19911fdbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ bundlerApp
, bundlerUpdateScript
, callPackage
, lib
}:

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

  passthru.updateScript = bundlerUpdateScript "maid";

  passthru.tests.run = callPackage ./test.nix { };

  meta = with lib; {
    description = "Rule-based file mover and cleaner in Ruby";
    homepage = "https://github.com/maid/maid";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ alanpearce ];
    platforms = platforms.unix;
  };
}