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.

39 lines
944 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, rustPlatform, libX11, libXinerama }:
2019-05-23 15:08:30 +00:00
let
2021-07-10 08:24:32 +00:00
rpathLibs = [ libXinerama libX11 ];
2019-05-23 15:08:30 +00:00
in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
2023-06-19 17:15:30 +00:00
version = "0.4.2";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
2023-06-19 17:15:30 +00:00
sha256 = "sha256-SjEp0gQHwq3Omhx/EPnyLeQJ50Ov0rHDxmYVWBwIDBs=";
};
2023-06-19 17:15:30 +00:00
cargoSha256 = "sha256-kdGqnfzO+Ev9QeZcZqISPTehEXZzCWT5S8p6JbTBreE=";
2021-07-10 08:24:32 +00:00
buildInputs = rpathLibs;
postInstall = ''
for p in $out/bin/left*; do
2021-07-10 08:24:32 +00:00
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $p
done
'';
2021-07-10 08:24:32 +00:00
dontPatchELF = true;
meta = with lib; {
description = "A tiling window manager for the adventurer";
homepage = "https://github.com/leftwm/leftwm";
license = licenses.mit;
platforms = platforms.linux;
2023-01-30 06:27:25 +00:00
maintainers = with maintainers; [ yanganto ];
2021-02-07 22:07:21 +00:00
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
2019-05-23 15:08:30 +00:00
}