linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / mediastreamer / msopenh264.nix
blob08842889f8651a0320fada6d7ae0ff88f8d58905
1 { autoreconfHook
2 , cmake
3 , fetchFromGitLab
4 , fetchpatch
5 , mediastreamer
6 , openh264
7 , pkg-config
8 , lib, stdenv
9 }:
11 stdenv.mkDerivation rec {
12   pname = "msopenh264";
13   # Using master branch for linphone-desktop caused a chain reaction that many
14   # of its dependencies needed to use master branch too.
15   version = "unstable-2020-03-03";
17   src = fetchFromGitLab {
18     domain = "gitlab.linphone.org";
19     owner = "public";
20     group = "BC";
21     repo = pname;
22     rev = "2c3abf52824ad23a4caae7565ef158ef91767704";
23     sha256 = "140hs5lzpshzswvl39klcypankq3v2qck41696j22my7s4wsa0hr";
24   };
26   nativeBuildInputs = [ autoreconfHook cmake pkg-config ];
27   buildInputs = [ mediastreamer openh264 ];
29   # Do not build static libraries
30   cmakeFlags = [
31     "-DENABLE_STATIC=NO"
32     "-DCMAKE_SKIP_INSTALL_RPATH=ON"
33   ];
35   # CMAKE_INSTALL_PREFIX has no effect so let's install manually. See:
36   # https://gitlab.linphone.org/BC/public/msopenh264/issues/1
37   installPhase = ''
38     mkdir -p $out/lib/mediastreamer/plugins
39     cp src/libmsopenh264.so $out/lib/mediastreamer/plugins/
40   '';
42   meta = with lib; {
43     description = "H.264 encoder/decoder plugin for mediastreamer2";
44     homepage = "https://www.linphone.org/technical-corner/mediastreamer2";
45     license = licenses.gpl2;
46     platforms = platforms.linux;
47     maintainers = with maintainers; [ jluttine ];
48   };