mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
90 lines
1.7 KiB
Nix
90 lines
1.7 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, cmake
|
|
, copyDesktopItems
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, pkg-config
|
|
, alsa-lib
|
|
, curl
|
|
, gtkmm3
|
|
, libhandy
|
|
, libopus
|
|
, libpulseaudio
|
|
, libsecret
|
|
, libsodium
|
|
, nlohmann_json
|
|
, pcre2
|
|
, spdlog
|
|
, sqlite
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abaddon";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uowuo";
|
|
repo = "abaddon";
|
|
rev = "v${version}";
|
|
hash = "sha256-FPhHy+4BmaoGrHGsc5o79Au9JcH5C+iWTYQYwnTLaUY=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
copyDesktopItems
|
|
makeWrapper
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
gtkmm3
|
|
libhandy
|
|
libopus
|
|
libsecret
|
|
libsodium
|
|
nlohmann_json
|
|
pcre2
|
|
spdlog
|
|
sqlite
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/abaddon
|
|
cp -r ../res/{css,res} $out/share/abaddon
|
|
mkdir $out/bin
|
|
cp abaddon $out/bin
|
|
wrapProgram $out/bin/abaddon \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ alsa-lib libpulseaudio ]}" \
|
|
--chdir $out/share/abaddon
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = pname;
|
|
exec = pname;
|
|
desktopName = "Abaddon";
|
|
genericName = meta.description;
|
|
startupWMClass = pname;
|
|
categories = [ "Network" "InstantMessaging" ];
|
|
mimeTypes = [ "x-scheme-handler/discord" ];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A discord client reimplementation, written in C++";
|
|
mainProgram = "abaddon";
|
|
homepage = "https://github.com/uowuo/abaddon";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|