2022-06-16 17:23:12 +00:00
|
|
|
{ stdenv, 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-09-09 14:08:57 +00:00
|
|
|
version = "0.3.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "leftwm";
|
|
|
|
repo = "leftwm";
|
|
|
|
rev = version;
|
2022-09-09 14:08:57 +00:00
|
|
|
sha256 = "sha256-AfE36u5xSfivkg+hmJ6ASh6zXmTnLOv5RFigkGzySng=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
cargoSha256 = "sha256-MmxF1jt5VUZGbkEe858HBjAuHhgDY23MJJxpYQ4ckhs=";
|
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; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
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;
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
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
|
|
|
};
|
|
|
|
}
|