3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/window-managers/leftwm/default.nix

39 lines
956 B
Nix
Raw Normal View History

2021-07-10 09:24:32 +01:00
{ lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
2019-05-23 16:08:30 +01:00
let
2021-07-10 09:24:32 +01:00
rpathLibs = [ libXinerama libX11 ];
2019-05-23 16:08:30 +01:00
in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
2021-10-31 10:33:19 +00:00
version = "0.2.9";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
2021-10-31 10:33:19 +00:00
sha256 = "sha256:0w4afhrp2cxz0nmpvalyaxz1dpywajjj2wschw8dpkvgxqs64gd5";
};
2021-10-31 10:33:19 +00:00
cargoSha256 = "sha256:0r0smpv50gim2naaa0qf6yhvqvsa2f40rkgiryi686y69m5ii7mv";
2021-07-10 09:24:32 +01:00
buildInputs = rpathLibs;
postInstall = ''
2021-07-10 09:24:32 +01:00
for p in $out/bin/leftwm*; do
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
done
'';
2021-07-10 09:24:32 +01:00
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 ];
2021-02-07 22:07:21 +00:00
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
2019-05-23 16:08:30 +01:00
}