d058d15f5f
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
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, libX11, libXinerama, makeWrapper }:
|
|
|
|
let
|
|
rpath = stdenv.lib.makeLibraryPath [ libXinerama libX11 ];
|
|
in
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "leftwm";
|
|
version = "0.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leftwm";
|
|
repo = "leftwm";
|
|
rev = version;
|
|
sha256 = "0x8cqc7zay19jxy7cshayjjwwjrcblqpmqrxipm2g5hhyjghk6q0";
|
|
};
|
|
|
|
cargoSha256 = "1kphv3vnr8ij7raf0niwz3rwly986xi5fgwqg2ya0r46ifqkgvrc";
|
|
|
|
buildInputs = [ makeWrapper libX11 libXinerama ];
|
|
|
|
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}"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|