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

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

25 lines
680 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, pkg-config, wrapGAppsHook4, gtk4 }:
2022-09-14 18:08:03 +00:00
rustPlatform.buildRustPackage rec {
pname = "ripdrag";
version = "0.4.0";
2022-09-14 18:08:03 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-9VGvwMovJb1IIpwf+1FxcxnPcmPl+59jfQC6365E95s=";
2022-09-14 18:08:03 +00:00
};
cargoHash = "sha256-kxT0wJodPiHXX/bsvrlPbyfUbxPBgmv68a8I5pKOwEg=";
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";
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
};
}