diff options
author | tv <tv@shackspace.de> | 2015-07-19 22:41:35 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-19 22:43:19 +0200 |
commit | a43abde60ec5375187f7fcd3786d67802bcf1fd2 (patch) | |
tree | 8bb40ba0022b080dbe868475ebd3046c3abe4636 /Zpkgs/tv/charybdis | |
parent | a4cb007999e3f6803fab4c695f61c3cd53ef674a (diff) |
Zpkgs tv charybdis: --sysconfdir=/tmp
Diffstat (limited to 'Zpkgs/tv/charybdis')
-rw-r--r-- | Zpkgs/tv/charybdis/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zpkgs/tv/charybdis/default.nix b/Zpkgs/tv/charybdis/default.nix index a38a25c8a..f3e6be40e 100644 --- a/Zpkgs/tv/charybdis/default.nix +++ b/Zpkgs/tv/charybdis/default.nix @@ -5,19 +5,21 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/atheme/charybdis.git"; - rev = "43a9b61c427cd0f3fa2c192890b8a48d9ea6fb7f"; - sha256 = "ae2c8a72e6a29c901f9b51759b542ee12c4ec918050a2d9d65e5635077a0fcef"; + rev = "61815bf9324e872f51255e09fe37a8c595f94a60"; + sha256 = "0zsd6xk2cnspc1cvryy2296p3ix4hwjd9k24wmgbh5wzks0wahwy"; }; patches = [ - ./remove-setenv.patch + ./remove-setenv.patch ]; configureFlags = [ "--enable-epoll" "--enable-ipv6" "--enable-openssl=${openssl}" + "--enable-small-net" "--with-program-prefix=charybdis-" + "--sysconfdir=/tmp" ]; buildInputs = [ bison flex openssl ]; @@ -29,6 +31,4 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.lassulus ]; platforms = stdenv.lib.platforms.linux; }; - - } |