nixpkgs/pkgs/by-name/xa/xavs/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

50 lines
1.4 KiB
Nix

{ lib, stdenv, fetchsvn }:
stdenv.mkDerivation rec {
pname = "xavs";
version = "55";
src = fetchsvn {
url = "https://svn.code.sf.net/p/xavs/code/trunk";
rev = version;
sha256 = "0drw16wm95dqszpl7j33y4gckz0w0107lnz6wkzb66f0dlbv48cf";
};
enableParallelBuilding = true;
patchPhase = ''
patchShebangs configure
patchShebangs config.sub
patchShebangs version.sh
patchShebangs tools/countquant_xavs.pl
patchShebangs tools/patcheck
patchShebangs tools/regression-test.pl
patchShebangs tools/xavs-format
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace config.guess --replace 'uname -p' 'uname -m'
substituteInPlace configure \
--replace '-O4' '-O3' \
--replace ' -s ' ' ' \
--replace 'LDFLAGS -s' 'LDFLAGS' \
--replace '-dynamiclib' ' ' \
--replace '-falign-loops=16' ' '
substituteInPlace Makefile --replace '-Wl,-soname,' ' '
'';
configureFlags = [
"--enable-pic"
"--enable-shared"
# Bug preventing compilation with assembly enabled
"--disable-asm"
];
meta = with lib; {
description = "AVS encoder and decoder";
mainProgram = "xavs";
homepage = "https://xavs.sourceforge.net/";
license = licenses.lgpl2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ codyopel ];
};
}