23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
28 lines
844 B
Nix
28 lines
844 B
Nix
{ lib, rustPlatform, fetchFromGitHub, pkg-config, wrapGAppsHook4, gtk4 }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ripdrag";
|
|
version = "0.4.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nik012003";
|
|
repo = "ripdrag";
|
|
rev = "v${version}";
|
|
hash = "sha256-42sfSrwRlpaO4Dkw6m6wcKXef5yKZjw9MMoYNwIF6/o=";
|
|
};
|
|
|
|
cargoHash = "sha256-mW334GTAUAUw8xs2Idpr2ThGyN1P0GbP/RjDqj5Ttr0=";
|
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook4 ];
|
|
|
|
buildInputs = [ gtk4 ];
|
|
|
|
meta = with lib; {
|
|
description = "An application that lets you drag and drop files from and to the terminal";
|
|
homepage = "https://github.com/nik012003/ripdrag";
|
|
changelog = "https://github.com/nik012003/ripdrag/releases/tag/${src.rev}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "ripdrag";
|
|
};
|
|
}
|