Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 120a81e

Browse files
committed
fix: paths in .nix and .sh files
1 parent 08f28f9 commit 120a81e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ system ? builtins.currentSystem, pkg ? null }:
22
let
3-
pkgs = import ./pkgs/top-level/all-packages.nix;
3+
pkgs = import ./nix/pkgs/top-level/all-packages.nix;
44
in
55
pkgs { inherit system; inherit pkg; }

nix/pkgs/development/node-packages/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env nix-shell
22
#! nix-shell -i bash -p git nodePackages.node2nix
3-
#! nix-shell -I nixpkgs=../../..
3+
#! nix-shell -I nixpkgs=../../../..
44

55
set -eu -o pipefail
66

nix/pkgs/development/python-modules/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env nix-shell
22
#! nix-shell -i bash -p glibcLocales python37 nix-prefetch-github pypi2nix
3-
#! nix-shell -I nixpkgs=../../..
3+
#! nix-shell -I nixpkgs=../../../..
44

55
export LANG=en_US.UTF-8
66
pypi2nix -v -V 3.7 -s numpy -r requirements.txt \

nix/pkgs/development/r-modules/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env nix-shell
22
#! nix-shell -i bash -p wget parallel R rPackages.data_table
3-
#! nix-shell -I nixpkgs=../../..
3+
#! nix-shell -I nixpkgs=../../../..
44

55
# Generate new `*-packages.nix` files for each R package repository
66
# in the following list.

0 commit comments

Comments
 (0)