-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell.nix
28 lines (26 loc) · 867 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ pkgs ? import (builtins.fetchTarball { # https://nixos.wiki/wiki/FAQ/Pinning_Nixpkgs :
# Descriptive name to make the store path easier to identify
name = "nixos-unstable-2020-09-03";
# Commit hash for nixos-unstable as of the date above
url = "https://github.com/NixOS/nixpkgs/archive/702d1834218e483ab630a3414a47f3a537f94182.tar.gz";
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "1vs08avqidij5mznb475k5qb74dkjvnsd745aix27qcw55rm0pwb";
}) { }}:
with pkgs;
mkShell {
buildInputs = [
#(callPackage ./libimobiledevice/libimobiledevice.nix {})
(callPackage ./libimobiledevice/libimobiledevice_unstable-2021-11-24.nix {})
#usbmuxd
(callPackage ./libimobiledevice/usbmuxd2.nix {})
pkg-config
python3
util-linux
lsof
(callPackage ./btrbk.nix {})
procps
which
#sudo
netcat-gnu
];
}