Merge pull request #250857 from figsoda/backdown

This commit is contained in:
figsoda 2023-08-23 16:26:23 -04:00 committed by GitHub
commit 32e841474f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "backdown";
version = "1.1.1";
src = fetchFromGitHub {
owner = "Canop";
repo = "backdown";
rev = "v${version}";
hash = "sha256-w9EdDSGqmHRLXwx5qFo0BngKATKtQsieMt6dPgfOrQ0=";
};
cargoHash = "sha256-BOwhXq/xVuk3KylL3KeIkiIG3SXVASFiYkUgKJhMzuU=";
meta = with lib; {
description = "A file deduplicator";
homepage = "https://github.com/Canop/backdown";
changelog = "https://github.com/Canop/backdown/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "backdown";
};
}

View file

@ -37004,6 +37004,8 @@ with pkgs;
aperture = callPackage ../applications/blockchains/aperture { };
backdown = callPackage ../tools/misc/backdown { };
balanceofsatoshis = callPackage ../tools/misc/balanceofsatoshis { };
bitcoin = libsForQt5.callPackage ../applications/blockchains/bitcoin {