mirror of
https://github.com/justinwoo/spago2nix.git
synced 2024-11-25 10:03:17 +03:00
update easy-purescirpt-nix dependency
mostly need to stop assuming i can actually build against latest purescript, because nothing is stable
This commit is contained in:
parent
08c9997a0a
commit
3339d19826
@ -5,8 +5,8 @@ let
|
|||||||
pkgs.fetchFromGitHub {
|
pkgs.fetchFromGitHub {
|
||||||
owner = "justinwoo";
|
owner = "justinwoo";
|
||||||
repo = "easy-purescript-nix";
|
repo = "easy-purescript-nix";
|
||||||
rev = "cc7196bff3fdb5957aabfe22c3fa88267047fe88";
|
rev = "e00a54ca6bd0290e8301eff140d109c1f300e40d";
|
||||||
sha256 = "1xfl7rnmmcm8qdlsfn3xjv91my6lirs5ysy01bmyblsl10y2z9iw";
|
sha256 = "1yrnnpxkzs59ik5dj9v67ysn4viff775v24kizpl0ylf24c74928";
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
@ -20,5 +20,5 @@ in
|
|||||||
spago2nix.mkBuildProjectOutput {
|
spago2nix.mkBuildProjectOutput {
|
||||||
src = ./src;
|
src = ./src;
|
||||||
|
|
||||||
purs = easy-ps.purs;
|
purs = easy-ps.purs-0_13_8;
|
||||||
}
|
}
|
||||||
|
15
ci.nix
15
ci.nix
@ -1,12 +1,12 @@
|
|||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> { } }:
|
||||||
|
|
||||||
let
|
let
|
||||||
easy-ps = import (
|
easy-ps = import
|
||||||
|
(
|
||||||
pkgs.fetchFromGitHub {
|
pkgs.fetchFromGitHub {
|
||||||
owner = "justinwoo";
|
owner = "justinwoo";
|
||||||
repo = "easy-purescript-nix";
|
repo = "easy-purescript-nix";
|
||||||
rev = "cc7196bff3fdb5957aabfe22c3fa88267047fe88";
|
rev = "e00a54ca6bd0290e8301eff140d109c1f300e40d";
|
||||||
sha256 = "1xfl7rnmmcm8qdlsfn3xjv91my6lirs5ysy01bmyblsl10y2z9iw";
|
sha256 = "1yrnnpxkzs59ik5dj9v67ysn4viff775v24kizpl0ylf24c74928";
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
@ -18,5 +18,8 @@ let
|
|||||||
|
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = [ easy-ps.purs spago2nix ];
|
buildInputs = [
|
||||||
|
easy-ps.purs-0_13_8
|
||||||
|
spago2nix
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
18
default.nix
18
default.nix
@ -11,25 +11,25 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
{ pkgs ? import <nixpkgs> {}
|
{ pkgs ? import <nixpkgs> { }
|
||||||
, dhall-json ? (easy-dhall-nix pkgs).dhall-json-simple
|
, dhall-json ? (easy-dhall-nix pkgs).dhall-json-simple
|
||||||
, nodejs ? pkgs.nodejs-10_x
|
, nodejs ? pkgs.nodejs-10_x
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
let
|
easy-purescript-nix = import
|
||||||
easy-purescript-nix = import (
|
(
|
||||||
pkgs.fetchFromGitHub {
|
pkgs.fetchFromGitHub {
|
||||||
owner = "justinwoo";
|
owner = "justinwoo";
|
||||||
repo = "easy-purescript-nix";
|
repo = "easy-purescript-nix";
|
||||||
rev = "1ec689df0adf8e8ada7fcfcb513876307ea34226";
|
rev = "e00a54ca6bd0290e8301eff140d109c1f300e40d";
|
||||||
sha256 = "12hk2zbjkrq2i5fs6xb3x254lnhm9fzkcxph0a7ngxyzfykvf4hi";
|
sha256 = "1yrnnpxkzs59ik5dj9v67ysn4viff775v24kizpl0ylf24c74928";
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
pkgs.stdenv.mkDerivation {
|
pkgs.stdenv.mkDerivation {
|
||||||
name = "spago2nix";
|
name = "spago2nix";
|
||||||
|
|
||||||
src = pkgs.nix-gitignore.gitignoreSource [ ".git" ] ./.;
|
src = pkgs.nix-gitignore.gitignoreSource [ ".git" ] ./.;
|
||||||
@ -53,4 +53,4 @@ in
|
|||||||
dhall-json
|
dhall-json
|
||||||
]}
|
]}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
20
mkbin.nix
20
mkbin.nix
@ -4,26 +4,26 @@
|
|||||||
# nix-shell mkbin.nix
|
# nix-shell mkbin.nix
|
||||||
#
|
#
|
||||||
|
|
||||||
{ pkgs ? import <nixpkgs> {}
|
{ pkgs ? import <nixpkgs> { }
|
||||||
, nodejs ? pkgs.nodejs-10_x
|
, nodejs ? pkgs.nodejs-10_x
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
let
|
easy-purescript-nix = import
|
||||||
easy-purescript-nix = import (
|
(
|
||||||
pkgs.fetchFromGitHub {
|
pkgs.fetchFromGitHub {
|
||||||
owner = "justinwoo";
|
owner = "justinwoo";
|
||||||
repo = "easy-purescript-nix";
|
repo = "easy-purescript-nix";
|
||||||
rev = "1ec689df0adf8e8ada7fcfcb513876307ea34226";
|
rev = "e00a54ca6bd0290e8301eff140d109c1f300e40d";
|
||||||
sha256 = "12hk2zbjkrq2i5fs6xb3x254lnhm9fzkcxph0a7ngxyzfykvf4hi";
|
sha256 = "1yrnnpxkzs59ik5dj9v67ysn4viff775v24kizpl0ylf24c74928";
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
easy-purescript-nix.purs
|
easy-purescript-nix.purs-0_13_8
|
||||||
easy-purescript-nix.spago
|
easy-purescript-nix.spago
|
||||||
nodejs
|
nodejs
|
||||||
];
|
];
|
||||||
@ -32,4 +32,4 @@
|
|||||||
npm run mkbin
|
npm run mkbin
|
||||||
exit 0
|
exit 0
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user