2
0
mirror of https://github.com/Revertron/Alfis synced 2024-11-12 19:10:48 +00:00
Alfis/shell.nix

11 lines
402 B
Nix
Raw Normal View History

2021-05-14 08:06:46 +00:00
let
# Pinned nixpkgs, deterministic. Last updated: 2/12/21.
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/a58a0b5098f0c2a389ee70eb69422a052982d990.tar.gz")) {};
# Rolling updates, not deterministic.
# pkgs = import (fetchTarball("channel:nixpkgs-unstable")) {};
in pkgs.mkShell {
buildInputs = [ pkgs.cargo pkgs.rustc pkgs.webkitgtk pkgs.pkg-config pkgs.kdialog];
}