Skip to content

Commit

Permalink
aces-container: init at 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
paperdigits committed Aug 31, 2024
1 parent 151889c commit bd5baa8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/by-name/ac/aces_container/default.nix
Original file line number Diff line number Diff line change
@@ -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.unfree; # FIXME: nix-init did not find a license
maintainers = with lib.maintainers; [ paperdigits ];
mainProgram = "aces-container";
platforms = lib.platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35365,6 +35365,8 @@ with pkgs;
art = callPackage ../by-name/ar/art/package.nix {
fftw = fftwSinglePrec;
};

aces-container = callPackage ../by-name/ac/aces_container/default.nix { };

arx-libertatis = libsForQt5.callPackage ../games/arx-libertatis { };

Expand Down

0 comments on commit bd5baa8

Please sign in to comment.