Initial commit

This commit is contained in:
2025-03-19 15:32:04 +01:00
commit 1c2f8b08d3
8 changed files with 542 additions and 0 deletions

24
default.nix Normal file
View File

@@ -0,0 +1,24 @@
{
lib
, fetchFromGitHub
, rustPlatform
, makeWrapper
, mpv
}:
rustPlatform.buildRustPackage rec {
pname = "thumbctl";
version = "0.1.0";
src = lib.cleanSource ./.;
nativeBuildInputs = [ makeWrapper ];
cargoHash = "";
meta = with lib; {
license = licenses.mit;
maintainers = with maintainers; [ h7x4 ];
platforms = platforms.linux;
mainProgram = "thumbctl";
};
}