mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #177241 from dotlambda/rymdport-init
rymdport: init at 3.0.2
This commit is contained in:
commit
d7847617d1
52
pkgs/applications/networking/rymdport/default.nix
Normal file
52
pkgs/applications/networking/rymdport/default.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, libGL
|
||||
, xorg
|
||||
, Carbon
|
||||
, Cocoa
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "rymdport";
|
||||
version = "3.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Jacalz";
|
||||
repo = "rymdport";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-kAEkeRAS+gMjdriop4tQcqc+GldldxOn+QwgWTl8XB0=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-rZHM0HwiTNbUuJmlNOHg/XoYxqrKt59l5BL/vjm4Hfk=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = with xorg; [
|
||||
libGL
|
||||
libX11
|
||||
libXcursor
|
||||
libXext
|
||||
libXi
|
||||
libXinerama
|
||||
libXrandr
|
||||
libXxf86vm
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Carbon
|
||||
Cocoa
|
||||
IOKit
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Easy encrypted file, folder, and text sharing between devices";
|
||||
homepage = "https://github.com/Jacalz/rymdport";
|
||||
changelog = "https://github.com/Jacalz/rymdport/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -31765,6 +31765,10 @@ with pkgs;
|
||||
inherit (gnome) zenity;
|
||||
};
|
||||
|
||||
rymdport = callPackage ../applications/networking/rymdport {
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||
};
|
||||
|
||||
uade = callPackage ../applications/audio/uade {};
|
||||
|
||||
udevil = callPackage ../applications/misc/udevil {};
|
||||
|
Loading…
Reference in New Issue
Block a user