leftwm: 0.1.10 -> 0.2.2

General update, but also along for the ride:

- Upgrade cargo fetcher for https://github.com/NixOS/nixpkgs/issues/79975
- Quoted homepage for https://github.com/NixOS/rfcs/pull/45
- Switched to consistent 2-space indent
- Cleaned up the meta section
This commit is contained in:
Benjamin Hipple 2020-03-09 17:43:48 -04:00 committed by Alyssa Ross
parent cd8c987fbc
commit d058d15f5f

View File

@ -6,15 +6,17 @@ in
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "leftwm"; pname = "leftwm";
version = "0.1.10"; version = "0.2.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "leftwm"; owner = "leftwm";
repo = "leftwm"; repo = "leftwm";
rev = version; rev = version;
sha256 = "190lc48clkh9vzlsfg2a70w405k7xyyw7avnxwna1glfwmbyy2ag"; sha256 = "0x8cqc7zay19jxy7cshayjjwwjrcblqpmqrxipm2g5hhyjghk6q0";
}; };
cargoSha256 = "1kphv3vnr8ij7raf0niwz3rwly986xi5fgwqg2ya0r46ifqkgvrc";
buildInputs = [ makeWrapper libX11 libXinerama ]; buildInputs = [ makeWrapper libX11 libXinerama ];
postInstall = '' postInstall = ''
@ -23,19 +25,11 @@ rustPlatform.buildRustPackage rec {
wrapProgram $out/bin/leftwm-worker --prefix LD_LIBRARY_PATH : "${rpath}" wrapProgram $out/bin/leftwm-worker --prefix LD_LIBRARY_PATH : "${rpath}"
''; '';
# Delete this on next update; see #79975 for details meta = with stdenv.lib; {
legacyCargoFetcher = true;
cargoSha256 = "0mpvfix7bvc84vanha474l4gaq97ac1zy5l77z83m9jg0246yxd6";
# patch wrong version in Cargo.lock
cargoPatches = [ ./cargo-lock.patch ];
meta = {
description = "Leftwm - A tiling window manager for the adventurer"; description = "Leftwm - A tiling window manager for the adventurer";
homepage = https://github.com/leftwm/leftwm; homepage = "https://github.com/leftwm/leftwm";
license = stdenv.lib.licenses.mit; license = licenses.mit;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ mschneider ]; maintainers = with maintainers; [ mschneider ];
}; };
} }