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