File: shell.nix

package info (click to toggle)
rust-swtchr 0.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,244 kB
  • sloc: makefile: 4
file content (13 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
let
  nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
  pkgs = import nixpkgs { config = {}; overlays = []; };
in

pkgs.mkShell {
  nativeBuildInputs = with pkgs.buildPackages; [ 
    gtk4
    gtk4-layer-shell
    pkg-config
    librsvg
  ];
}