2021-07-10 09:24:32 +01:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
|
2019-05-23 16:08:30 +01:00
|
|
|
|
2020-03-09 21:43:48 +00: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 {
|
2020-03-09 21:43:48 +00:00
|
|
|
pname = "leftwm";
|
2022-02-12 00:57:35 +00:00
|
|
|
version = "0.2.11";
|
2020-03-09 21:43:48 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "leftwm";
|
|
|
|
repo = "leftwm";
|
|
|
|
rev = version;
|
2022-02-12 00:57:35 +00:00
|
|
|
sha256 = "sha256-GLHmX628UUdIM+xYJhPtqFg4whQqaF8hFxg0Z5grPac=";
|
2020-03-09 21:43:48 +00:00
|
|
|
};
|
|
|
|
|
2022-02-12 00:57:35 +00:00
|
|
|
cargoSha256 = "sha256-4Pu3TDLmi0c2nyUj1lTRincgRqL40A/g0PkyJOen0is=";
|
2020-03-09 21:43:48 +00:00
|
|
|
|
2021-07-10 09:24:32 +01:00
|
|
|
buildInputs = rpathLibs;
|
2020-03-09 21:43:48 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2021-07-10 09:24:32 +01:00
|
|
|
for p in $out/bin/leftwm*; do
|
|
|
|
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
|
|
|
|
done
|
2020-03-09 21:43:48 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-10 09:24:32 +01:00
|
|
|
dontPatchELF = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "A tiling window manager for the adventurer";
|
2020-03-09 21:43:48 +00:00
|
|
|
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";
|
2020-03-09 21:43:48 +00:00
|
|
|
};
|
2019-05-23 16:08:30 +01:00
|
|
|
}
|