fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ fetchFromGitHub }:
2
3{
4 qmplay2 =
5 let
6 self = {
7 pname = "qmplay2";
8 version = "25.09.11";
9
10 src = fetchFromGitHub {
11 owner = "zaps166";
12 repo = "QMPlay2";
13 tag = self.version;
14 hash = "sha256-1F6VOTMJZ64PlIVSWoYzNz4LVmn5pEcUq+IfstYDwYo=";
15 };
16 };
17 in
18 self;
19
20 vulkan-headers-qmplay2 =
21 let
22 self = {
23 pname = "vulkan-headers";
24 version = "1.4.317";
25
26 src = fetchFromGitHub {
27 owner = "KhronosGroup";
28 repo = "Vulkan-Headers";
29 tag = "v${self.version}";
30 hash = "sha256-ezNthwKsnXehQfrQh0zTk6Zrz3JgdqjYu68abYUWIik=";
31 };
32 };
33 in
34 self;
35
36 qmvk = {
37 pname = "qmvk";
38 version = "0-unstable-2025-09-02";
39
40 src = fetchFromGitHub {
41 owner = "zaps166";
42 repo = "QmVk";
43 rev = "0225dc851afaf39be2b92f91d4316e866f4b6133";
44 hash = "sha256-W2102+X+gE/9ghdAwWBeWYmSkSdp6lLPx4IKaQpLANI=";
45 };
46 };
47}