about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/skype-call-recorder
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-04-05 16:11:03 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-04-05 16:11:03 +0200
commitad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5 (patch)
treee3ab90b52075aeec3cb617aa4fb33c2e372168b4 /pkgs/applications/networking/instant-messengers/skype-call-recorder
parentd5a036d63d6c03cfa4973ee6d6778f070dd702e9 (diff)
downloadnixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.tar
nixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.tar.gz
nixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.tar.bz2
nixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.tar.lz
nixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.tar.xz
nixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.tar.zst
nixlib-ad5b5bcf0a7e0624bf2b50b41d872d52d013ccc5.zip
skype-call-recorder: fix expression and improve conferences
I missed a semicolon; I also add an upstream patch about
improving the hosted conferences support:
http://repo.or.cz/w/skype-call-recorder.git/commit/abd67f1d44eef81baf2e9729f95e002c4ecc7350
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/skype-call-recorder')
-rw-r--r--pkgs/applications/networking/instant-messengers/skype-call-recorder/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/skype-call-recorder/default.nix b/pkgs/applications/networking/instant-messengers/skype-call-recorder/default.nix
index eb9cd5945bca..2fa82e1251bc 100644
--- a/pkgs/applications/networking/instant-messengers/skype-call-recorder/default.nix
+++ b/pkgs/applications/networking/instant-messengers/skype-call-recorder/default.nix
@@ -7,16 +7,20 @@ stdenv.mkDerivation {
     sha256 = "1iijkhq3aj9gr3bx6zl8ryvzkqcdhsm9yisimakwq0lnw0lgf5di";
   };
 
-  patchPhase = ''
+  # Keep an rpath reference to the used libogg
+  prePatch = ''
     sed -i -e '/ADD_EXECUTABLE/aSET(LIBRARIES ''${LIBRARIES} ogg)' CMakeLists.txt
   '';
 
+  # Better support for hosted conferences
+  patches = [ ./conference.patch ];
+
   buildInputs = [ cmake lame id3lib libvorbis qt4 libogg ];
 
   meta = {
     homepage = http://atdot.ch/scr/;
     description = "Open source tool to record your Skype calls on Linux";
-    license = "GPLv2+"
+    license = "GPLv2+";
     platforms = with stdenv.lib.platforms; linux;
     maintainers = with stdenv.lib.maintainers; [viric];
   };