Files
nixpkgs/pkgs/development/libraries/faad2/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

43 lines
822 B
Nix

{lib
, stdenv
, fetchFromGitHub
, cmake
# for passthru.tests
, gst_all_1
, mpd
, ocamlPackages
, vlc
}:
stdenv.mkDerivation rec {
pname = "faad2";
version = "2.11.1";
src = fetchFromGitHub {
owner = "knik0";
repo = "faad2";
rev = version;
hash = "sha256-E6oe7yjYy1SJo8xQkyUk1sSucKDMPxwUFVSAyrf4Pd8=";
};
outputs = [ "out" "dev" "man" ];
nativeBuildInputs = [ cmake ];
passthru.tests = {
inherit mpd vlc;
inherit (gst_all_1) gst-plugins-bad;
ocaml-faad = ocamlPackages.faad;
};
meta = with lib; {
description = "Open source MPEG-4 and MPEG-2 AAC decoder";
homepage = "https://sourceforge.net/projects/faac/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ codyopel ];
mainProgram = "faad";
platforms = platforms.all;
};
}