mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 12:19:00 +00:00
26 lines
770 B
Nix
26 lines
770 B
Nix
{ pkgs ? import <nixpkgs> { }, lib ? pkgs.lib
|
|
, self ? import ../../lib { inherit pkgs; }, }:
|
|
|
|
{
|
|
testsInternetArchiveFetcher = self.fetchers.fetchInternetArchive {
|
|
id = "md_music_sonic_the_hedgehog";
|
|
file = "01 - Title Theme - Masato Nakamura.flac";
|
|
hash = "sha256-kGjsVjtjXK9imqyi4GF6qkFVmobiTAe/ZAeEwiouqS4=";
|
|
};
|
|
|
|
testsInternetArchiveFetcher2 = self.fetchers.fetchInternetArchive {
|
|
id = "md_music_sonic_the_hedgehog";
|
|
formats = [ "TEXT" "PNG" ];
|
|
hash = "sha256-xbhasJ/wEgcY+EcBAJp5UoYB4N4It3QV/iIeGGdCET8=";
|
|
};
|
|
|
|
testsFetchUgeeDriver =
|
|
# Ugee M908.
|
|
self.fetchers.fetchUgeeDriver {
|
|
fileId = "943";
|
|
pid = "505";
|
|
hash = "sha256-50Dbyaaa1B8nQu3+tTGvh/yjQqwaARB2MWtKSOUYsKg=";
|
|
extension = "tar.gz";
|
|
};
|
|
}
|