kobo-color-inputdev/shell.nix

6 lines
164 B
Nix
Raw Normal View History

2024-11-01 22:55:23 +01:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
2024-11-10 00:08:01 +01:00
packages = with pkgs; [ libinput evtest clang-tools ];
2024-11-01 22:55:23 +01:00
inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
}