depot/third_party/nixpkgs/pkgs/applications/window-managers/leftwm/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

39 lines
988 B
Nix

{ stdenv, lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
let
rpathLibs = [ libXinerama libX11 ];
in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
version = "0.3.0";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
sha256 = "sha256-AfE36u5xSfivkg+hmJ6ASh6zXmTnLOv5RFigkGzySng=";
};
cargoSha256 = "sha256-MmxF1jt5VUZGbkEe858HBjAuHhgDY23MJJxpYQ4ckhs=";
buildInputs = rpathLibs;
postInstall = ''
for p in $out/bin/leftwm*; 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; [ ];
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
}