2023-08-14 19:27:06 +02:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, pkg-config, wrapGAppsHook4, gtk4 }:
|
2022-09-14 20:08:03 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ripdrag";
|
2023-11-18 23:53:29 +01:00
|
|
|
version = "0.4.5";
|
2022-09-14 20:08:03 +02:00
|
|
|
|
2023-08-14 19:27:06 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nik012003";
|
|
|
|
repo = "ripdrag";
|
|
|
|
rev = "v${version}";
|
2023-11-18 23:53:29 +01:00
|
|
|
hash = "sha256-mU2S4DhS2KXO7uIMBhJvaTjLpkFCljyEVoPcq4b2jKc=";
|
2022-09-14 20:08:03 +02:00
|
|
|
};
|
|
|
|
|
2023-11-18 23:53:29 +01:00
|
|
|
cargoHash = "sha256-PWFNLtEXIgZ0RheDS5j9/MMXgzFjgCJKMi/51Z2ta8I=";
|
2022-09-14 20:08:03 +02:00
|
|
|
|
2023-07-25 17:38:34 +02:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook4 ];
|
2022-09-14 20:08:03 +02: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";
|
2023-08-14 19:27:06 +02:00
|
|
|
changelog = "https://github.com/nik012003/ripdrag/releases/tag/${src.rev}";
|
2022-09-14 20:08:03 +02:00
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
2023-11-27 02:17:53 +01:00
|
|
|
mainProgram = "ripdrag";
|
2022-09-14 20:08:03 +02:00
|
|
|
};
|
|
|
|
}
|