mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
32 lines
867 B
Nix
32 lines
867 B
Nix
{ lib, stdenv, fetchFromGitHub, gtk3, libdivsufsort, pkg-config, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "flips";
|
|
version = "unstable-2021-10-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alcaro";
|
|
repo = "Flips";
|
|
rev = "3a8733e74c9bdbb6b89da2b45913a0be3d0e1866";
|
|
sha256 = "1jik580mz2spik5mgh60h93ryaj5x8dffncnr1lwija0v803xld7";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
|
buildInputs = [ gtk3 libdivsufsort ];
|
|
patches = [ ./use-system-libdivsufsort.patch ];
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
./make.sh
|
|
runHook postBuild
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A patcher for IPS and BPS files";
|
|
homepage = "https://github.com/Alcaro/Flips";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.xfix ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|