mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 06:44:06 +00:00
41 lines
959 B
Nix
41 lines
959 B
Nix
{ lib, stdenv, fetchFromGitHub, openssl, sqlite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "signalbackup-tools";
|
|
version = "20221227-1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bepaald";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-yOOKgB7MO9LW6qkr/JZOYtteQTW/Yms4CMAg4EIJGc8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs BUILDSCRIPT_MULTIPROC.bash44
|
|
'';
|
|
|
|
buildInputs = [ openssl sqlite ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
./BUILDSCRIPT_MULTIPROC.bash44${lib.optionalString stdenv.isDarwin " --config nixpkgs-darwin"}
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp signalbackup-tools $out/bin/
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to work with Signal Backup files";
|
|
homepage = "https://github.com/bepaald/signalbackup-tools";
|
|
license = licenses.gpl3Only;
|
|
maintainers = [ maintainers.malo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|