nixpkgs/pkgs/applications/window-managers/leftwm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
988 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
2019-05-23 17:08:30 +02:00
let
2021-07-10 10:24:32 +02:00
rpathLibs = [ libXinerama libX11 ];
2019-05-23 17:08:30 +02:00
in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
2022-10-07 21:55:49 +02:00
version = "0.4.0";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
2022-10-07 21:55:49 +02:00
sha256 = "sha256-4f9YOVkOXn7+TzTUZS2Lultgj9WhiOPUa/fHUeyLBUU=";
};
2022-10-07 21:55:49 +02:00
cargoSha256 = "sha256-D00IFTELRlqeKQ7zheJKTvu5FBgYQXsZ+OnPnVzweC4=";
2021-07-10 10:24:32 +02:00
buildInputs = rpathLibs;
postInstall = ''
2021-07-10 10:24:32 +02:00
for p in $out/bin/leftwm*; do
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
done
'';
2021-07-10 10:24:32 +02:00
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; [ ];
2021-02-07 23:07:21 +01:00
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
2019-05-23 17:08:30 +02:00
}