mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
localsend: format
This commit is contained in:
parent
11f1030337
commit
63425c530c
@ -1,14 +1,15 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, fetchFromGitHub
|
||||
, flutter313
|
||||
, makeDesktopItem
|
||||
, nixosTests
|
||||
, pkg-config
|
||||
, libayatana-appindicator
|
||||
, undmg
|
||||
, makeBinaryWrapper
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
fetchFromGitHub,
|
||||
flutter313,
|
||||
makeDesktopItem,
|
||||
nixosTests,
|
||||
pkg-config,
|
||||
libayatana-appindicator,
|
||||
undmg,
|
||||
makeBinaryWrapper,
|
||||
}:
|
||||
|
||||
let
|
||||
@ -77,7 +78,10 @@ let
|
||||
hash = "sha256-L7V48QoOA0cjx45n+9Xav/zzCzCsZB3TBip0WGusMXg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ undmg makeBinaryWrapper ];
|
||||
nativeBuildInputs = [
|
||||
undmg
|
||||
makeBinaryWrapper
|
||||
];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
@ -89,7 +93,10 @@ let
|
||||
|
||||
meta = metaCommon // {
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
platforms = [ "x86_64-darwin" "aarch64-darwin" ];
|
||||
platforms = [
|
||||
"x86_64-darwin"
|
||||
"aarch64-darwin"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
@ -98,9 +105,11 @@ let
|
||||
homepage = "https://localsend.org/";
|
||||
license = licenses.mit;
|
||||
mainProgram = "localsend";
|
||||
maintainers = with maintainers; [ sikmir linsui pandapip1 ];
|
||||
maintainers = with maintainers; [
|
||||
sikmir
|
||||
linsui
|
||||
pandapip1
|
||||
];
|
||||
};
|
||||
in
|
||||
if stdenv.isDarwin
|
||||
then darwin
|
||||
else linux
|
||||
if stdenv.isDarwin then darwin else linux
|
||||
|
Loading…
Reference in New Issue
Block a user