aces-container: init at 1.0.2
This commit is contained in:
parent
151889cdbf
commit
13995fbc68
@ -92,6 +92,11 @@ lib.mapAttrs mkLicense ({
|
||||
free = false;
|
||||
};
|
||||
|
||||
ampas = {
|
||||
spdxId = "AMPAS";
|
||||
fullName = "Academy of Motion Picture Arts and Sciences BSD";
|
||||
};
|
||||
|
||||
aom = {
|
||||
fullName = "Alliance for Open Media Patent License 1.0";
|
||||
url = "https://aomedia.org/license/patent-license/";
|
||||
|
31
pkgs/by-name/ac/aces-container/package.nix
Normal file
31
pkgs/by-name/ac/aces-container/package.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aces-container";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ampas";
|
||||
repo = "aces_container";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-luMqXqlJ6UzoawEDmbK38lm3GHosaZm/mFJntBF54Y4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Reference Implementation of SMPTE ST2065-4";
|
||||
homepage = "https://github.com/ampas/aces_container";
|
||||
license = lib.licenses.ampas;
|
||||
maintainers = with lib.maintainers; [ paperdigits ];
|
||||
mainProgram = "aces-container";
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user