2023-08-22 20:05:09 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, pkg-config, wrapGAppsHook4, gtk4 }:
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ripdrag";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "0.4.9";
|
2022-09-22 12:36:57 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nik012003";
|
|
|
|
repo = "ripdrag";
|
|
|
|
rev = "v${version}";
|
2024-07-01 15:47:52 +00:00
|
|
|
hash = "sha256-fsCIyaGCLwf1T8xyVCTjg51TXS8v0l9dBHRB8wdyN5g=";
|
2022-09-22 12:36:57 +00:00
|
|
|
};
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
cargoHash = "sha256-ZzD+WkmvZX4YXtOwWHw/7t9N/xgKWrMfCThcYFyHG/g=";
|
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; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Application that lets you drag and drop files from and to the terminal";
|
2022-09-22 12:36:57 +00:00
|
|
|
homepage = "https://github.com/nik012003/ripdrag";
|
2023-08-22 20:05:09 +00:00
|
|
|
changelog = "https://github.com/nik012003/ripdrag/releases/tag/${src.rev}";
|
2022-09-22 12:36:57 +00:00
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "ripdrag";
|
2022-09-22 12:36:57 +00:00
|
|
|
};
|
|
|
|
}
|