biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / obs-studio / plugins / obs-text-pthread.nix
blob8ce601f08ea503b8edebee8094fdccf2a9093a4c
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , cairo
6 , obs-studio
7 , pango
8 , pkg-config
9 }:
11 stdenv.mkDerivation rec {
12   pname = "obs-text-pthread";
13   version = "2.0.5";
15   src = fetchFromGitHub {
16     owner = "norihiro";
17     repo = "obs-text-pthread";
18     rev = version;
19     sha256 = "sha256-zrgxKs3jmrwQJiEgKfZz1BOVToTLauQXtFYcuFlV71o=";
20   };
22   nativeBuildInputs = [ cmake pkg-config ];
23   buildInputs = [ cairo obs-studio pango ];
25   postInstall = ''
26     mkdir $out/lib $out/share
27     mv $out/obs-plugins/64bit $out/lib/obs-plugins
28     rm -rf $out/obs-plugins
29     mv $out/data $out/share/obs
30   '';
32   meta = with lib; {
33     description = "Rich text source plugin for OBS Studio";
34     homepage = "https://github.com/norihiro/obs-text-pthread";
35     maintainers = with maintainers; [ flexiondotorg ];
36     license = licenses.gpl2Plus;
37     platforms = [ "x86_64-linux" "i686-linux" ];
38   };