Pin electrs dependencies (within nixpkgs)
This commit is contained in:
parent
986ebc8f88
commit
1646605a80
@ -18,6 +18,7 @@ Profiles
|
|||||||
* adds clightning hidden service
|
* adds clightning hidden service
|
||||||
* [liquid-daemon](https://github.com/blockstream/liquid)
|
* [liquid-daemon](https://github.com/blockstream/liquid)
|
||||||
* [lightning charge](https://github.com/ElementsProject/lightning-charge)
|
* [lightning charge](https://github.com/ElementsProject/lightning-charge)
|
||||||
|
* [electrs](https://github.com/romanz/electrs)
|
||||||
* [nanopos](https://github.com/ElementsProject/nanopos)
|
* [nanopos](https://github.com/ElementsProject/nanopos)
|
||||||
* adds an index page using nginx to display node information and link to nanopos
|
* adds an index page using nginx to display node information and link to nanopos
|
||||||
* [spark-wallet](https://github.com/shesek/spark-wallet)
|
* [spark-wallet](https://github.com/shesek/spark-wallet)
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
let
|
let
|
||||||
PkgsSource = builtins.fetchGit { url = "https://github.com/nixos/nixpkgs-channels"; ref = "nixos-18.09"; };
|
overlay = builtins.fetchGit {
|
||||||
defaultPkgs = import PkgsSource {overlays = [(import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz)) ]; };
|
url = "https://github.com/mozilla/nixpkgs-mozilla";
|
||||||
|
ref = "master";
|
||||||
|
rev = "f61795ea78ea2a489a2cabb27abde254d2a37d25";
|
||||||
|
};
|
||||||
|
defaultPkgs = import <nixpkgs> {overlays = [ (import overlay) ]; };
|
||||||
defaultRust = defaultPkgs.latest.rustChannels.nightly.rust;
|
defaultRust = defaultPkgs.latest.rustChannels.nightly.rust;
|
||||||
defaultCargo = defaultPkgs.latest.rustChannels.nightly.cargo;
|
defaultCargo = defaultPkgs.latest.rustChannels.nightly.cargo;
|
||||||
defaultBuildRustPackage = defaultPkgs.callPackage (import "${PkgsSource}/pkgs/build-support/rust") {
|
defaultBuildRustPackage = defaultPkgs.callPackage (import <nixpkgs/pkgs/build-support/rust>) {
|
||||||
rust = {
|
rust = {
|
||||||
rustc = defaultRust;
|
rustc = defaultRust;
|
||||||
cargo = defaultCargo;
|
cargo = defaultCargo;
|
||||||
|
Loading…
Reference in New Issue
Block a user