mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
375bedea79
leftwm: fix to also patchelf lefthk-worker
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{ stdenv, lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
|
|
|
|
let
|
|
rpathLibs = [ libXinerama libX11 ];
|
|
in
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "leftwm";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leftwm";
|
|
repo = "leftwm";
|
|
rev = version;
|
|
sha256 = "sha256-ZAlX8Vu4JAwQlwBOHT435Bz3g3qqK5ePm9v0cDqP8Q4=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-nn/P9ZZNf1Zts4JiJ2kXWAAG/HT1GnlYHXcPijYiBlU=";
|
|
|
|
cargoPatches = [
|
|
./0001-patch-version.patch
|
|
];
|
|
|
|
buildInputs = rpathLibs;
|
|
|
|
postInstall = ''
|
|
for p in $out/bin/left*; do
|
|
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
|
|
done
|
|
'';
|
|
|
|
dontPatchELF = true;
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
description = "A tiling window manager for the adventurer";
|
|
homepage = "https://github.com/leftwm/leftwm";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ yanganto ];
|
|
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
|
|
};
|
|
}
|