summary refs log tree commit diff
path: root/pkgs/applications/window-managers/leftwm/default.nix
blob: 25a219c2be4213fc76a8e18cafff13cdb565130d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv, fetchFromGitHub, rustPlatform, libX11, libXinerama, makeWrapper }:

let 
    rpath = stdenv.lib.makeLibraryPath [ libXinerama libX11 ];
in

rustPlatform.buildRustPackage rec {
    pname = "leftwm";
    version = "0.1.10";

    src = fetchFromGitHub {
        owner = "leftwm";
        repo = "leftwm";
        rev = version;
        sha256 = "190lc48clkh9vzlsfg2a70w405k7xyyw7avnxwna1glfwmbyy2ag";
    };

    buildInputs = [ makeWrapper 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}"
    '';

  # Delete this on next update; see #79975 for details
  legacyCargoFetcher = true;

    cargoSha256 = "0mpvfix7bvc84vanha474l4gaq97ac1zy5l77z83m9jg0246yxd6";

    # patch wrong version in Cargo.lock
    cargoPatches = [ ./cargo-lock.patch ];

    meta = {
        description = "Leftwm - A tiling window manager for the adventurer";
        homepage = https://github.com/leftwm/leftwm;
        license = stdenv.lib.licenses.mit;
        platforms = stdenv.lib.platforms.linux;
        maintainers = with stdenv.lib.maintainers; [ mschneider ];
    };
}