blob: 115e9766584d3fc4bacff54760d2912639ddb901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ stdenv, callPackage }:
let
voidrice = callPackage ../voidrice.nix { };
in
stdenv.mkDerivation {
name = "cron";
src = voidrice;
installPhase = ''
mkdir -p $out/bin
cp -r ${voidrice}/.local/bin/cron $out/bin
'';
meta = {
description = "cron";
homepage = "https://github.com/LukeSmithXYZ/voidrice";
};
}
|