Merge pull request #191218 from figsoda/ripdrag

ripdrag: init at 0.1.5
This commit is contained in:
figsoda 2022-09-16 19:58:13 -04:00 committed by GitHub
commit d421a10518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, rustPlatform, fetchCrate, pkg-config, gtk4 }:
rustPlatform.buildRustPackage rec {
pname = "ripdrag";
version = "0.1.5";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-Pa/QYxdPt95deEjSXEVhm2jR3r8rTaKQj2DltT7EVAw=";
};
cargoSha256 = "sha256-jI7nF8Q8sA4AxkXvQ43r5GqcbTWffuf453DLGUs7I98=";
nativeBuildInputs = [ pkg-config ];
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 ];
};
}

View File

@ -10312,6 +10312,8 @@ with pkgs;
rig = callPackage ../tools/misc/rig { };
ripdrag = callPackage ../tools/misc/ripdrag { };
riseup-vpn = libsForQt5.callPackage ../tools/networking/bitmask-vpn {
provider = "riseup";
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;