riot-web: make package configurable
This commit is contained in:
parent
831ef4756e
commit
d8f8253d3f
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch }:
|
{ lib, stdenv, fetchurl, fetchpatch, writeText, conf ? null }:
|
||||||
|
|
||||||
|
let configFile = writeText "riot-config.json" conf; in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name= "riot-web-${version}";
|
name= "riot-web-${version}";
|
||||||
version = "0.13.5";
|
version = "0.13.5";
|
||||||
@ -12,6 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/
|
mkdir -p $out/
|
||||||
cp -R . $out/
|
cp -R . $out/
|
||||||
|
${lib.optionalString (conf != null) "ln -s ${configFile} $out/config.json"}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -1321,7 +1321,9 @@ with pkgs;
|
|||||||
|
|
||||||
ring-daemon = callPackage ../applications/networking/instant-messengers/ring-daemon { };
|
ring-daemon = callPackage ../applications/networking/instant-messengers/ring-daemon { };
|
||||||
|
|
||||||
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix { };
|
riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
|
||||||
|
conf = config.riot-web.conf or null;
|
||||||
|
};
|
||||||
|
|
||||||
rsyslog = callPackage ../tools/system/rsyslog {
|
rsyslog = callPackage ../tools/system/rsyslog {
|
||||||
hadoop = null; # Currently Broken
|
hadoop = null; # Currently Broken
|
||||||
|
Loading…
x
Reference in New Issue
Block a user