about summary refs log tree commit diff stats
path: root/pkgs/by-name/au/aumo/package.nix
blob: 77aa2adc6b5f4ee6a79209b60687c614227b0f5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  writeShellApplication,
  # Dependencies
  udisks,
  findutils,
  rofi,
  jq,
  gnugrep,
}:
writeShellApplication {
  name = "aumo";
  text = builtins.readFile ./aumo.sh;
  inheritPath = false;
  runtimeInputs = [
    udisks
    findutils
    rofi
    jq
    gnugrep
  ];
}