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
rustPlatform.buildRustPackage rec {
pname = "leftwm";
version = "0.1.10";
pname = "leftwm";
version = "0.2.2";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
sha256 = "190lc48clkh9vzlsfg2a70w405k7xyyw7avnxwna1glfwmbyy2ag";
};
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
sha256 = "0x8cqc7zay19jxy7cshayjjwwjrcblqpmqrxipm2g5hhyjghk6q0";
};
buildInputs = [ makeWrapper libX11 libXinerama ];
cargoSha256 = "1kphv3vnr8ij7raf0niwz3rwly986xi5fgwqg2ya0r46ifqkgvrc";
postInstall = ''
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}"
'';
buildInputs = [ makeWrapper libX11 libXinerama ];
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
postInstall = ''
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";
# patch wrong version in Cargo.lock
cargoPatches = [ ./cargo-lock.patch ];
meta = {
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 ];
};
meta = with stdenv.lib; {
description = "Leftwm - A tiling window manager for the adventurer";
homepage = "https://github.com/leftwm/leftwm";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ mschneider ];
};
}