Update pkgs/by-name/co/color-transformation-language/package.nix

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

View File

@ -9,14 +9,14 @@
aces-container,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ctl";
version = "1.5.3";
src = fetchFromGitHub {
owner = "ampas";
repo = "CTL";
rev = "ctl-${version}";
rev = "ctl-${finalAttrs.version}";
hash = "sha256-jG+38jsPw+4CEAbOG+hudfPBPbZLG+Om7PszkFa6DuI=";
};
@ -37,4 +37,4 @@ stdenv.mkDerivation rec {
mainProgram = "ctl";
platforms = lib.platforms.all;
};
}
})