arc-theme: refactor (#528121)

This commit is contained in:
José Romildo Malaquias
2026-06-05 14:04:26 +00:00
committed by GitHub

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
];
};
}
})