gitbutler/flake.nix

78 lines
2.3 KiB
Nix
Raw Normal View History

2024-04-23 13:14:11 +03:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
2024-04-23 13:35:16 +03:00
rust-overlay = {
2024-04-23 13:14:11 +03:00
url = "github:oxalica/rust-overlay";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
};
2024-04-23 13:35:16 +03:00
outputs = { self, nixpkgs, flake-utils, rust-overlay }:
2024-04-23 13:14:11 +03:00
flake-utils.lib.eachDefaultSystem
(system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
};
2024-04-23 14:04:00 +03:00
rustToolchain = pkgs.pkgsBuildHost.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
common = with pkgs; [
2024-04-23 13:35:16 +03:00
gtk3
glib
dbus
openssl_3
librsvg
2024-04-23 14:04:00 +03:00
libsoup_3
webkitgtk
2024-04-23 13:35:16 +03:00
];
2024-04-23 14:04:00 +03:00
# runtime Deps
libraries = with pkgs;[
cairo
pango
harfbuzz
gdk-pixbuf
] ++ common;
# compile-time deps
packages = with pkgs; [
2024-04-23 13:35:16 +03:00
curl
wget
pkg-config
2024-04-23 14:04:00 +03:00
rustToolchain
] ++ common;
2024-04-23 13:14:11 +03:00
in
with pkgs;
{
devShells.default = mkShell {
2024-04-23 14:04:00 +03:00
# inherit buildInputs nativeBuildInputs;
nativeBuildInputs = packages;
buildInputs = libraries;
# XDG_DATA_DIRS = let
# base = pkgs.lib.concatMapStringsSep ":" (x: "${x}/share") [
# pkgs.gnome.adwaita-icon-theme
# pkgs.shared-mime-info
# ];
#
# gsettings_schema = pkgs.lib.concatMapStringsSep ":" (x: "${x}/share/gsettings-schemas/${x.name}") [
# pkgs.glib
# pkgs.gsettings-desktop-schemas
# pkgs.gtk3
# ];
# in "${base}:${gsettings_schema}";
2024-04-23 13:35:16 +03:00
shellHook =
''
export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath libraries}:$LD_LIBRARY_PATH
export XDG_DATA_DIRS=${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}:${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}:$XDG_DATA_DIRS
'';
2024-04-23 13:14:11 +03:00
};
}
);
}