mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-06-08 10:09:04 +02:00
Added status page
This commit is contained in:
parent
48c36bbd4c
commit
a42a771ece
7 changed files with 88 additions and 0 deletions
25
packages/tinystatus/default.nix
Normal file
25
packages/tinystatus/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }:
|
||||
with pkgs;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tinystatus";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub{
|
||||
owner = "bderenzo";
|
||||
repo = "tinystatus";
|
||||
rev="fc128adf240261ac99ea3e3be8d65a92eda52a73";
|
||||
sha256= "FvQwibm6F10l9/U3RnNTGu+C2JjHOwbv62VxXAfI7/s=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs .
|
||||
'';
|
||||
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
mv tinystatus $out/bin/
|
||||
'';
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue