nixpkgs/pkgs/development/libraries/fdk-aac/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

26 lines
694 B
Nix

{ stdenv, fetchurl
, exampleSupport ? false # Example encoding program
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "fdk-aac";
version = "2.0.0";
src = fetchurl {
url = "mirror://sourceforge/opencore-amr/fdk-aac/${pname}-${version}.tar.gz";
sha256 = "0v6rbyw9f9lpfvcg3v1qyapga5hqfnb3wp3x5yaxpwcgjw7ydmpp";
};
configureFlags = [ ]
++ optional exampleSupport "--enable-example";
meta = {
description = "A high-quality implementation of the AAC codec from Android";
homepage = https://sourceforge.net/projects/opencore-amr/;
license = licenses.asl20;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.all;
};
}