Merge pull request #250857 from figsoda/backdown
This commit is contained in:
commit
32e841474f
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/backdown/default.nix
Normal file
27
pkgs/tools/misc/backdown/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue