-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
24 lines (21 loc) · 811 Bytes
/
flake.nix
File metadata and controls
24 lines (21 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
description = "Nix Flake for PDF Remote Access Trojan";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
buildInputs = [
nixpkgs.legacyPackages.x86_64-linux.pkg-config
nixpkgs.legacyPackages.x86_64-linux.openssl
nixpkgs.legacyPackages.x86_64-linux.rustc
nixpkgs.legacyPackages.x86_64-linux.cargo
nixpkgs.legacyPackages.x86_64-linux.rustfmt
nixpkgs.legacyPackages.x86_64-linux.sqlite
nixpkgs.legacyPackages.x86_64-linux.clippy
];
};
};
}