2023-08-04 22:07:22 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate, pkg-config, wrapGAppsHook4, gtk4 }:
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ripdrag";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "0.3.2";
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2023-08-04 22:07:22 +00:00
|
|
|
hash = "sha256-vxAAAFLTIfLqYD7E/nwsHgFLhzMRF7DspIaWqAMZcXk=";
|
2022-09-22 12:36:57 +00:00
|
|
|
};
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
cargoHash = "sha256-6GKLBnG1p6iaFvnEQgfNlGpZwEG93tI256DCMLuJjOU=";
|
2022-09-22 12:36:57 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook4 ];
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|