2021-07-14 22:03:04 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
2021-07-14 22:03:04 +00:00
|
|
|
rpathLibs = [ libXinerama libX11 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "leftwm";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "0.2.11";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "leftwm";
|
|
|
|
repo = "leftwm";
|
|
|
|
rev = version;
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-GLHmX628UUdIM+xYJhPtqFg4whQqaF8hFxg0Z5grPac=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
cargoSha256 = "sha256-4Pu3TDLmi0c2nyUj1lTRincgRqL40A/g0PkyJOen0is=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
buildInputs = rpathLibs;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2021-07-14 22:03:04 +00:00
|
|
|
for p in $out/bin/leftwm*; do
|
|
|
|
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
|
|
|
|
done
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
dontPatchELF = true;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-11-03 02:18:15 +00:00
|
|
|
description = "A tiling window manager for the adventurer";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/leftwm/leftwm";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ mschneider ];
|
2021-04-05 15:23:46 +00:00
|
|
|
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|