Update pkgs/by-name/ac/aces-container/package.nix

Co-authored-by: Connor Baker <ConnorBaker01@Gmail.com>
This commit is contained in:
Mica 2024-09-24 21:20:07 -07:00 committed by GitHub
parent 4539588dd5
commit e66e11ce7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,14 +5,14 @@
cmake,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "aces-container";
version = "1.0.2";
src = fetchFromGitHub {
owner = "ampas";
repo = "aces_container";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-luMqXqlJ6UzoawEDmbK38lm3GHosaZm/mFJntBF54Y4=";
};
@ -28,4 +28,4 @@ stdenv.mkDerivation rec {
mainProgram = "aces-container";
platforms = lib.platforms.all;
};
}
})