nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 qtModule,
3 fetchFromGitHub,
4 qtbase,
5}:
6
7qtModule rec {
8 pname = "qtmqtt";
9 version = "6.10.1";
10
11 src = fetchFromGitHub {
12 owner = "qt";
13 repo = "qtmqtt";
14 tag = "v${version}";
15 hash = "sha256-ve9fyhUZFI6TAr/SFRXJudA1yTmTlg8+Fgyc9OUv3ds=";
16 };
17
18 propagatedBuildInputs = [ qtbase ];
19}