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

38 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform, libX11, libXinerama, makeWrapper }:
2019-05-23 16:08:30 +01:00
let
2021-01-15 13:21:58 +00:00
rpath = lib.makeLibraryPath [ libXinerama libX11 ];
2019-05-23 16:08:30 +01:00
in
rustPlatform.buildRustPackage rec {
pname = "leftwm";
2021-04-29 15:44:15 +01:00
version = "0.2.7";
src = fetchFromGitHub {
owner = "leftwm";
repo = "leftwm";
rev = version;
2021-04-29 15:44:15 +01:00
sha256 = "sha256-nRPt+Tyfq62o+3KjsXkHQHUMMslHFGNBd3s2pTb7l4w=";
};
2021-04-29 15:44:15 +01:00
cargoSha256 = "sha256-lmzA7XM8B5QJI4Wo0cKeMR3+np6jT6mdGzTry4g87ng=";
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ libX11 libXinerama ];
postInstall = ''
wrapProgram $out/bin/leftwm --prefix LD_LIBRARY_PATH : "${rpath}"
wrapProgram $out/bin/leftwm-state --prefix LD_LIBRARY_PATH : "${rpath}"
wrapProgram $out/bin/leftwm-worker --prefix LD_LIBRARY_PATH : "${rpath}"
'';
meta = with lib; {
description = "A tiling window manager for the adventurer";
homepage = "https://github.com/leftwm/leftwm";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ mschneider ];
2021-02-07 22:07:21 +00:00
changelog = "https://github.com/leftwm/leftwm/blob/${version}/CHANGELOG";
};
2019-05-23 16:08:30 +01:00
}