fix variables
This commit is contained in:
parent
cb9f7890ac
commit
97be246d2f
|
@ -5,10 +5,6 @@
|
|||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
let
|
||||
productVersion = "0.4.1";
|
||||
productName = "blockstream-electrs";
|
||||
in
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
with nixpkgs.legacyPackages.${system}; {
|
||||
packages =
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
let
|
||||
productVersion = "0.4.1";
|
||||
productName = "blockstream-electrs";
|
||||
in
|
||||
pkgs.rustPlatform.buildRustPackage {
|
||||
name = "${productName}";
|
||||
version = "${productVersion}";
|
||||
|
|
Loading…
Reference in New Issue
Block a user