chore(*): <nixpkgs> -> ./nixpkgs.nix

This way we don’t get any dumb system-related bugs/bugreports.
This commit is contained in:
Profpatsch 2020-11-30 22:50:55 +01:00
parent a2edc737d3
commit 6d34cf1038
10 changed files with 11 additions and 11 deletions

View File

@ -16,14 +16,14 @@ You might choose to simply copy the derivations from this repository, or you can
```
> nix repl
nix-repl> pkgs = import <nixpkgs> {}
nix-repl> pkgs = import ./nixpkgs.nix {}
nix-repl> drvs = import (pkgs.fetchFromGitHub {
owner = "justinwoo";
repo = "easy-dhall-nix";
rev = # some REV
sha256 = # some SHA
}) {}
}) { inherit pkgs; }
nix-repl> drvs.dhall-simple
«derivation /nix/store/qz29jbplpmlvsbmq05084dh1fbs8sl0h-dhall-simple.drv»

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
{
dhall-simple = import ./dhall-simple.nix {

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-bash-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> { } }:
{ pkgs ? import ./nixpkgs.nix { } }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-docs-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-json-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-lsp-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-nix-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
import ./build.nix { inherit pkgs; release = import ./release.nix; } {
simpleName = "dhall-yaml-simple";

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import ./nixpkgs.nix {} }:
let