sirula: 1.0.0-unstable -> 1.1.0

update to 1.1.0, switch to useFetchCargoVendor, fix lib antipatterns
This commit is contained in:
atagen
2025-01-18 12:48:41 +11:00
parent da76b6311e
commit 21da4a7f0e
+9 -13
View File
@@ -9,21 +9,17 @@
rustPlatform.buildRustPackage rec {
pname = "sirula";
version = "1.0.0-unstable-2023-09-02";
version = "1.1.0";
src = fetchFromGitHub {
owner = "DorianRudolph";
repo = pname;
rev = "b15efe85ef1fe50849a33e5919d53d05f4f66090";
hash = "sha256-S0WbqY49nKaBUMWfgDKZxFLJuk7uFcnTfV8s86V0Zxs=";
repo = "sirula";
tag = "v${version}";
hash = "sha256-rBaH2cIIaRoaw8Os60s4MknZywzDuGLagJiAvEYU4m8=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"osstrtools-0.2.2" = "sha256-Co4pcikfN4vtIVK7ZsRGCWMAhMJWNNVZe/AdN1nMlmQ=";
};
};
useFetchCargoVendor = true;
cargoHash = "sha256-7trHMGTWtf4IT7efyKIXM7n4x6j7n2V3I7ZXSSwvzys=";
nativeBuildInputs = [ pkg-config ];
@@ -32,11 +28,11 @@ rustPlatform.buildRustPackage rec {
gtk-layer-shell
];
meta = with lib; {
meta = {
description = "Simple app launcher for wayland written in rust";
homepage = "https://github.com/DorianRudolph/sirula";
license = with licenses; [ gpl3Plus ];
license = [ lib.licenses.gpl3Plus ];
maintainers = [ ];
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}