pkgs/exhale: init

This commit is contained in:
Artemis Tosini 2024-11-08 03:02:34 +00:00
parent a8292695d6
commit 61af44e5ff
Signed by: artemist
GPG key ID: EE5227935FE3FF18
2 changed files with 28 additions and 0 deletions

View file

@ -71,6 +71,7 @@
bladeenc = final.callPackage ./packages/bladeenc { };
cups-dymo-patched = final.callPackage ./packages/cups-dymo { };
cynthion = final.callPackage ./packages/cynthion { };
exhale = final.callPackage ./packages/exhale { };
gbeplus = final.callPackage ./packages/gbeplus { };
hactoolnet = final.callPackage ./packages/hactoolnet { };
ipsw = final.callPackage ./packages/ipsw { };

View file

@ -0,0 +1,27 @@
{
stdenv,
lib,
fetchFromGitLab,
cmake,
}:
stdenv.mkDerivation rec {
pname = "exhale";
version = "1.2.1";
src = fetchFromGitLab {
owner = "ecodis";
repo = pname;
rev = "v${version}";
hash = "sha256-EzHtiV6HnH8xCCT63QA5nRNmH7mrS7pHNy9oEce+u54=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "open-source ISO/IEC 23003-3 (USAC, Extended HE-AAC) encoder";
homepage = "https://gitlab.com/ecodis/exhale";
license = licenses.bsd3;
maintainers = with maintainers; [ artemist ];
};
}