nixpkgs/pkgs/tools/misc/ripdrag/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
844 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, pkg-config, wrapGAppsHook4, gtk4 }:
2022-09-14 18:08:03 +00:00
rustPlatform.buildRustPackage rec {
pname = "ripdrag";
2024-04-28 02:41:21 +00:00
version = "0.4.8";
2022-09-14 18:08:03 +00:00
src = fetchFromGitHub {
owner = "nik012003";
repo = "ripdrag";
rev = "v${version}";
2024-04-28 02:41:21 +00:00
hash = "sha256-DjLQJUaSwglM9mtgKhG+JZ9vHTTfLXy21YLkZiPfTyE=";
2022-09-14 18:08:03 +00:00
};
2024-04-28 02:41:21 +00:00
cargoHash = "sha256-un7HE91w4p5+2LrjasKC8/q+nGg8F/6+ZACS5X3OJ1Q=";
2022-09-14 18:08:03 +00:00
nativeBuildInputs = [ pkg-config wrapGAppsHook4 ];
2022-09-14 18:08:03 +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";
changelog = "https://github.com/nik012003/ripdrag/releases/tag/${src.rev}";
2022-09-14 18:08:03 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
2023-11-27 01:17:53 +00:00
mainProgram = "ripdrag";
2022-09-14 18:08:03 +00:00
};
}