remove danube-cli package (just use bun install --global)
2 files changed, 0 insertions(+), 33 deletions(-)
changed files
M README.md → README.md
@@ -3,11 +3,6 @@ **My personal [NUR](https://github.com/nix-community/NUR) repository** ## Packages -### danube-cli -- Version: 0.10.0 -- Homepage: https://github.com/AdrianSilaghi/danube-cli -- Description: Deploy static sites to DanubeData from the terminal - ### dirstat-rs - Version: 0.3.7 - Homepage: https://github.com/scullionw/dirstat-rs
D pkgs/by-directory/danube-cli/package.nix
@@ -1,28 +0,0 @@ -{ - lib, - buildNpmPackage, - fetchFromGitHub, -}: - -buildNpmPackage rec { - pname = "danube-cli"; - version = "0.10.0"; - - src = fetchFromGitHub { - owner = "AdrianSilaghi"; - repo = "danube-cli"; - tag = "v${version}"; - hash = "sha256-9M03DpHN7FDnszVMunbG9jvFjirOEV/mUd3tIF9N/WI="; - }; - - npmDepsHash = "sha256-pqWAScISFbfxMdeS3+wn2XD0pRiK0C5tdYglcGA1Bqs="; - - meta = { - description = "Deploy static sites to DanubeData from the terminal"; - homepage = "https://github.com/AdrianSilaghi/danube-cli"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ alinnow ]; - mainProgram = "danube-cli"; - platforms = lib.platforms.all; - }; -}