Add wastebin
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 27m3s
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 27m3s
This commit is contained in:
@@ -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
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
22
pkgs/wastebin/default.nix
Normal 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=";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user