-
Notifications
You must be signed in to change notification settings - Fork 21
/
flake.nix
53 lines (44 loc) · 1.18 KB
/
flake.nix
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
42
43
44
45
46
47
48
49
50
51
52
53
{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let
inherit (nixpkgs) lib;
pkgs = nixpkgs.legacyPackages.${system};
rpath = lib.makeLibraryPath (with pkgs; [
fontconfig
libxkbcommon
wayland
]);
in
{
packages.default = pkgs.rustPlatform.buildRustPackage {
pname = "yofi";
inherit ((lib.importTOML (self + "/Cargo.toml")).package) version;
src = self;
cargoLock.lockFile = self + "/Cargo.lock";
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
libxkbcommon
];
postFixup = ''
patchelf $out/bin/yofi --add-rpath ${rpath}
'';
};
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustc
cargo
pkg-config
libxkbcommon
];
LD_LIBRARY_PATH = rpath;
};
}
);
}