From c30aa33c15ead7c76768f9180adaed5afe712165 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Sun, 1 May 2022 15:52:30 +0200 Subject: [PATCH] cl-rest: rename pkg to clightning-rest --- modules/rtl.nix | 2 +- pkgs/{cl-rest => clightning-rest}/composition.nix | 0 pkgs/{cl-rest => clightning-rest}/default.nix | 0 pkgs/{cl-rest => clightning-rest}/generate.sh | 0 pkgs/{cl-rest => clightning-rest}/node-packages.nix | 0 pkgs/{cl-rest => clightning-rest}/pkg.json | 0 pkgs/default.nix | 2 +- 7 files changed, 2 insertions(+), 2 deletions(-) rename pkgs/{cl-rest => clightning-rest}/composition.nix (100%) rename pkgs/{cl-rest => clightning-rest}/default.nix (100%) rename pkgs/{cl-rest => clightning-rest}/generate.sh (100%) rename pkgs/{cl-rest => clightning-rest}/node-packages.nix (100%) rename pkgs/{cl-rest => clightning-rest}/pkg.json (100%) diff --git a/modules/rtl.nix b/modules/rtl.nix index f40a3f7..3257b8b 100644 --- a/modules/rtl.nix +++ b/modules/rtl.nix @@ -248,7 +248,7 @@ in { StateDirectory = "cl-rest"; # cl-rest reads the config file from the working directory WorkingDirectory = cl-rest.dataDir; - ExecStart = "${nbPkgs.cl-rest}/bin/cl-rest"; + ExecStart = "${nbPkgs.clightning-rest}/bin/cl-rest"; # Show "cl-rest" instead of "node" in the journal SyslogIdentifier = "cl-rest"; User = cfg.user; diff --git a/pkgs/cl-rest/composition.nix b/pkgs/clightning-rest/composition.nix similarity index 100% rename from pkgs/cl-rest/composition.nix rename to pkgs/clightning-rest/composition.nix diff --git a/pkgs/cl-rest/default.nix b/pkgs/clightning-rest/default.nix similarity index 100% rename from pkgs/cl-rest/default.nix rename to pkgs/clightning-rest/default.nix diff --git a/pkgs/cl-rest/generate.sh b/pkgs/clightning-rest/generate.sh similarity index 100% rename from pkgs/cl-rest/generate.sh rename to pkgs/clightning-rest/generate.sh diff --git a/pkgs/cl-rest/node-packages.nix b/pkgs/clightning-rest/node-packages.nix similarity index 100% rename from pkgs/cl-rest/node-packages.nix rename to pkgs/clightning-rest/node-packages.nix diff --git a/pkgs/cl-rest/pkg.json b/pkgs/clightning-rest/pkg.json similarity index 100% rename from pkgs/cl-rest/pkg.json rename to pkgs/clightning-rest/pkg.json diff --git a/pkgs/default.nix b/pkgs/default.nix index e79149e..41fd40a 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -6,7 +6,7 @@ in , pkgsUnstable ? import nixpkgsPinned.nixpkgs-unstable { config = {}; overlays = []; } }: let self = { - cl-rest = pkgs.callPackage ./cl-rest { }; + clightning-rest = pkgs.callPackage ./clightning-rest { }; clboss = pkgs.callPackage ./clboss { }; clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages); joinmarket = pkgs.callPackage ./joinmarket { nbPythonPackageOverrides = import ./python-packages self; };