3
0
Fork 0
forked from mirrors/nixpkgs

leftwm: 0.4.0 -> 0.4.1

This commit is contained in:
Antonio Yang 2023-01-30 14:27:25 +08:00
parent eddd0503a6
commit 63f028357a
2 changed files with 30 additions and 4 deletions

View file

@ -0,0 +1,22 @@
diff --git a/Cargo.lock b/Cargo.lock
index ac3125a..c02b11d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -431,7 +431,7 @@ dependencies = [
[[package]]
name = "leftwm"
-version = "0.4.0"
+version = "0.4.1"
dependencies = [
"anyhow",
"clap",
@@ -467,7 +467,7 @@ dependencies = [
[[package]]
name = "leftwm-core"
-version = "0.4.0"
+version = "0.4.1"
dependencies = [
"dirs-next",
"futures",

View file

@ -6,16 +6,20 @@ in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
version = "0.4.0";
version = "0.4.1";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
sha256 = "sha256-4f9YOVkOXn7+TzTUZS2Lultgj9WhiOPUa/fHUeyLBUU=";
sha256 = "sha256-ZAlX8Vu4JAwQlwBOHT435Bz3g3qqK5ePm9v0cDqP8Q4=";
};
cargoSha256 = "sha256-D00IFTELRlqeKQ7zheJKTvu5FBgYQXsZ+OnPnVzweC4=";
cargoSha256 = "sha256-nn/P9ZZNf1Zts4JiJ2kXWAAG/HT1GnlYHXcPijYiBlU=";
cargoPatches = [
./0001-patch-version.patch
];
buildInputs = rpathLibs;
@ -33,7 +37,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/leftwm/leftwm";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ yanganto ];
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
}