Add wastebin
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 27m3s

This commit is contained in:
2024-01-10 15:21:40 +00:00
parent f90deabb50
commit 44e87aa387
9 changed files with 2250 additions and 0 deletions

View File

@@ -8,4 +8,5 @@ in
vfio-pci-bind = callPackage ./vfio-pci-bind.nix { };
librespeed-go = callPackage ./librespeed-go.nix { };
modrinth-app = callPackage ./modrinth-app { };
wastebin = callPackage ./wastebin { };
}

2161
pkgs/wastebin/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

22
pkgs/wastebin/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "wastebin";
version = "2.4.2";
src = fetchFromGitHub {
owner = "matze";
repo = pname;
rev = version;
hash = "sha256-9SsNtIZfRK9HwWaqlsuSCs7eNK/7KnzDtCe0fFslXwA=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"rusqlite_migration-1.1.0" = "sha256-FpIwgISYWEg7IQxG4tJ3u6b8+qanaqanZrq0Bz5WlLs=";
};
};
}