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

@ -5,37 +5,31 @@ let
in 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";
}; };
buildInputs = [ makeWrapper libX11 libXinerama ]; cargoSha256 = "1kphv3vnr8ij7raf0niwz3rwly986xi5fgwqg2ya0r46ifqkgvrc";
postInstall = '' buildInputs = [ makeWrapper libX11 libXinerama ];
wrapProgram $out/bin/leftwm --prefix LD_LIBRARY_PATH : "${rpath}"
wrapProgram $out/bin/leftwm-state --prefix LD_LIBRARY_PATH : "${rpath}"
wrapProgram $out/bin/leftwm-worker --prefix LD_LIBRARY_PATH : "${rpath}"
'';
# Delete this on next update; see #79975 for details postInstall = ''
legacyCargoFetcher = true; wrapProgram $out/bin/leftwm --prefix LD_LIBRARY_PATH : "${rpath}"
wrapProgram $out/bin/leftwm-state --prefix LD_LIBRARY_PATH : "${rpath}"
wrapProgram $out/bin/leftwm-worker --prefix LD_LIBRARY_PATH : "${rpath}"
'';
cargoSha256 = "0mpvfix7bvc84vanha474l4gaq97ac1zy5l77z83m9jg0246yxd6"; meta = with stdenv.lib; {
description = "Leftwm - A tiling window manager for the adventurer";
# patch wrong version in Cargo.lock homepage = "https://github.com/leftwm/leftwm";
cargoPatches = [ ./cargo-lock.patch ]; license = licenses.mit;
platforms = platforms.linux;
meta = { maintainers = with maintainers; [ mschneider ];
description = "Leftwm - A tiling window manager for the adventurer"; };
homepage = https://github.com/leftwm/leftwm;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ mschneider ];
};
} }