arc-theme: refactor

Switch to finalAttrs and SRI hash.

Assisted-by: Cursor Composer 2.5
This commit is contained in:
Guy Chronister
2026-06-04 15:36:58 -05:00
parent c7f90bf8f4
commit 4c642a2b9d
+4 -4
View File
@@ -15,15 +15,15 @@
python3,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "arc-theme";
version = "20221218";
src = fetchFromGitHub {
owner = "jnsh";
repo = "arc-theme";
tag = version;
sha256 = "sha256-7VmqsUCeG5GwmrVdt9BJj0eZ/1v+no/05KwGFb7E9ns=";
tag = finalAttrs.version;
hash = "sha256-7VmqsUCeG5GwmrVdt9BJj0eZ/1v+no/05KwGFb7E9ns=";
};
nativeBuildInputs = [
@@ -71,4 +71,4 @@ stdenv.mkDerivation rec {
romildo
];
};
}
})