mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
ccec93c1c7
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix webkitgtk is currently pointing to that specific ABI version but the alias is going to start warning
73 lines
1.8 KiB
Nix
73 lines
1.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
makeWrapper,
|
|
webkitgtk_4_0,
|
|
zenity,
|
|
Cocoa,
|
|
Security,
|
|
WebKit,
|
|
withGui ? true,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "alfis";
|
|
version = "0.8.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Revertron";
|
|
repo = "Alfis";
|
|
rev = "v${version}";
|
|
hash = "sha256-ettStNktSDZnYNN/IWqTB1Ou1g1QEGFabS4EatnDLaE=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"ecies-ed25519-ng-0.5.3" = "sha256-sJZ5JCaGNa3DdAaHw7/2qeLYv+HDKEMcY4uHbzfzQBM=";
|
|
"ureq-2.10.0" = "sha256-XNjY8qTgt2OzlfKu7ECIfgRLkSlprvjpgITsNVMi1uc=";
|
|
"web-view-0.7.3" = "sha256-eVMcpMRZHwOdWhfV6Z1uGUNOmhB41YZPaiz1tRQvhrI=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
makeWrapper
|
|
];
|
|
buildInputs =
|
|
lib.optional stdenv.hostPlatform.isDarwin Security
|
|
++ lib.optional (withGui && stdenv.hostPlatform.isLinux) webkitgtk_4_0
|
|
++ lib.optionals (withGui && stdenv.hostPlatform.isDarwin) [
|
|
Cocoa
|
|
WebKit
|
|
];
|
|
|
|
buildNoDefaultFeatures = true;
|
|
buildFeatures = [ "doh" ] ++ lib.optional withGui "webgui";
|
|
|
|
checkFlags = [
|
|
# these want internet access, disable them
|
|
"--skip=dns::client::tests::test_tcp_client"
|
|
"--skip=dns::client::tests::test_udp_client"
|
|
];
|
|
|
|
postInstall = lib.optionalString (withGui && stdenv.hostPlatform.isLinux) ''
|
|
wrapProgram $out/bin/alfis \
|
|
--prefix PATH : ${lib.makeBinPath [ zenity ]}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Alternative Free Identity System";
|
|
homepage = "https://alfis.name";
|
|
changelog = "https://github.com/Revertron/Alfis/releases/tag/v${version}";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ misuzu ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "alfis";
|
|
broken = withGui && stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|