all repos — nix-packages @ e7853b62a0d3a856c0b8fa4e708def850f065985

My personal collection of packages for nix

remove danube-cli package (just use bun install --global)

Alin
commit

e7853b62a0d3a856c0b8fa4e708def850f065985

parent

fa6fcc7b6afeb4c8ed86c50d53d844bef14aa76d

2 files changed, 0 insertions(+), 33 deletions(-)

changed files
M README.mdREADME.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; - }; -}