nixpkgs/pkgs/applications/window-managers/leftwm/default.nix
2021-10-31 10:33:19 +00:00

39 lines
956 B
Nix

{ lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
let
rpathLibs = [ libXinerama libX11 ];
in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
version = "0.2.9";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
sha256 = "sha256:0w4afhrp2cxz0nmpvalyaxz1dpywajjj2wschw8dpkvgxqs64gd5";
};
cargoSha256 = "sha256:0r0smpv50gim2naaa0qf6yhvqvsa2f40rkgiryi686y69m5ii7mv";
buildInputs = rpathLibs;
postInstall = ''
for p in $out/bin/leftwm*; do
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
done
'';
dontPatchELF = true;
meta = with lib; {
description = "A tiling window manager for the adventurer";
homepage = "https://github.com/leftwm/leftwm";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ mschneider ];
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
}