about summary refs log tree commit diff
path: root/pkgs/larbs-scripts/default.nix
blob: 39913fd1a8a7769e73f4b6041c6b88e48895646c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, callPackage, buildEnv, opustags }:
with stdenv.lib;
let
  bare = callPackage ./bare.nix { };
  cron = callPackage ./cron.nix { };
  i3cmds = callPackage ./i3cmds.nix { };
  statusbar = callPackage ./statusbar.nix { };
  slider = callPackage ./slider.nix { };
in
  buildEnv {
    name = "larbs-scripts";
    paths = [
      bare
      cron
      i3cmds
      statusbar

      opustags

      ## Movie creation
      slider
    ];

    meta = {
      homepage = "https://github.com/LukeSmithxyz/voidrice";
      description = "Set of larbs user scripts";
      platforms = [ "x86_64-linux" ];
    };
  }