We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e73e889 commit 2b5c10aCopy full SHA for 2b5c10a
dev/nix/shell.nix
@@ -1,5 +1,16 @@
1
with import <nixpkgs> {};
2
3
+# Pin the nixpkgs channel
4
+with import (builtins.fetchTarball {
5
+ # Descriptive name to make the store path easier to identify
6
+ name = "nixos-2020-09";
7
+ # Commit hash
8
+ url = "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz";
9
+ # Hash obtained using `nix-prefetch-url --unpack <url>`
10
+ sha256 = "1wg61h4gndm3vcprdcg7rc4s1v3jkm5xd7lw8r2f67w502y94gcy";
11
+}) {};
12
+
13
14
let
15
python_packages = p: with p; [
16
pip
0 commit comments