blob: ea4a62c706ad4aa3c917d186e7cc7aa3c3b0c3a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ stdenv, callPackage, buildEnv }:
with stdenv.lib;
let
bare = callPackage ./bare.nix { };
cron = callPackage ./cron.nix { };
i3cmds = callPackage ./i3cmds.nix { };
statusbar = callPackage ./statusbar.nix { };
in
buildEnv {
name = "larbs-scripts";
paths = [
bare
cron
i3cmds
statusbar
];
meta = {
homepage = "https://github.com/LukeSmithxyz/voidrice";
description = "Set of larbs user scripts";
platforms = [ "x86_64-linux" ];
};
}
|