about summary refs log tree commit diff stats
path: root/pkgs/by-name/au/aumo/package.nix
blob: 5ced60dc8b9bea97b85ca339f336bbf8ccac4c9d (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
{
  writeShellApplication,
  # Dependencies
  udisks,
  findutils,
  rofi,
  jq,
  gnugrep,
  util-linux,
}:
writeShellApplication {
  name = "aumo";
  text = builtins.readFile ./aumo.sh;
  inheritPath = false;
  runtimeInputs = [
    udisks
    findutils
    rofi
    jq
    gnugrep
    util-linux # for findmnt
  ];
}