mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Adding Skype Call Recorder.
This commit is contained in:
parent
a32e208ded
commit
d5a036d63d
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchurl, cmake, lame, id3lib, libvorbis, qt4, libogg }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "skype-call-recorder-0.8";
|
||||
src = fetchurl {
|
||||
url = "http://atdot.ch/scr/files/0.8/skype-call-recorder-0.8.tar.gz";
|
||||
sha256 = "1iijkhq3aj9gr3bx6zl8ryvzkqcdhsm9yisimakwq0lnw0lgf5di";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i -e '/ADD_EXECUTABLE/aSET(LIBRARIES ''${LIBRARIES} ogg)' CMakeLists.txt
|
||||
'';
|
||||
|
||||
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+"
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
};
|
||||
}
|
|
@ -7748,6 +7748,8 @@ let
|
|||
usePulseAudio = config.pulseaudio or true;
|
||||
};
|
||||
|
||||
skype_call_recorder = callPackage ../applications/networking/instant-messengers/skype-call-recorder { };
|
||||
|
||||
st = callPackage ../applications/misc/st { };
|
||||
|
||||
dropbox = callPackage ../applications/networking/dropbox { };
|
||||
|
|
Loading…
Reference in a new issue