diff options
author | lassulus <lass@aidsballs.de> | 2015-10-20 23:47:39 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-10-20 23:47:39 +0200 |
commit | 114bbe669a632d65fc0d57608f96fdb6fb034f07 (patch) | |
tree | 3b727293ef5442700c0015d42fbd83d6f92e096f /krebs/5pkgs/retiolum-bootstrap | |
parent | f6187b3796edcfcce71bd239bbc1e793e6bb806a (diff) | |
parent | 24271c6f6b4e730eccb238c28ca4b04eb70ede92 (diff) |
Merge remote-tracking branch 'pnp/master'
Diffstat (limited to 'krebs/5pkgs/retiolum-bootstrap')
-rw-r--r-- | krebs/5pkgs/retiolum-bootstrap/default.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/krebs/5pkgs/retiolum-bootstrap/default.nix b/krebs/5pkgs/retiolum-bootstrap/default.nix new file mode 100644 index 000000000..331b1cb7f --- /dev/null +++ b/krebs/5pkgs/retiolum-bootstrap/default.nix @@ -0,0 +1,29 @@ +{ stdenv,lib,fetchurl, ... }: +with lib; +stdenv.mkDerivation rec { + name = "retiolum-bootstrap"; + version = "4.2.3"; + + + src = fetchurl { + url = https://raw.githubusercontent.com/krebscode/painload/master/retiolum/scripts/tinc_setup/new_install.sh; + sha256 = "03kmil8q2xm3rdm2jxyah7vww84pw6w01d0c3siid9zpn2j7la9s"; + }; + + phases = [ + "installPhase" + ]; + + installPhase = '' + mkdir -p "$out" + cp -a ${src} $out/retiolum.sh + ''; + + meta = { + description = "Retiolum boostrap scripts"; + url = https://github.com/krebscode/painload; + license = licenses.wtfpl; + platforms = platforms.unix; + maintainers = with maintainers; [ makefu ]; + }; +} |