diswall: move env variable into env for structuredAttrs

New instances of environment variables outside of env should not be introduced.

Also modernize rev -> tag.
This commit is contained in:
Stefan Frijters
2026-06-29 13:40:37 +02:00
parent de58de3e3b
commit 0ccdbc0b48
+2 -2
View File
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
src = fetchFromGitHub {
owner = "dis-works";
repo = "diswall-rs";
rev = "v${finalAttrs.version}";
tag = "v${finalAttrs.version}";
hash = "sha256-5kKVEdzN38gyovGAg3/FE5sbSwCBEiQH1GPsDeQ+rCg=";
};
@@ -22,7 +22,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
OPENSSL_NO_VENDOR = 1;
env.OPENSSL_NO_VENDOR = 1;
doCheck = false;