mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 09:51:06 +00:00
12 lines
180 B
Nix
12 lines
180 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
cmake
|
|
qt5.full
|
|
qt5.qttools
|
|
qt5.qtsvg
|
|
];
|
|
buildInputs = [ pkgs.qt5.qtbase ];
|
|
}
|