Skip to content

Commit e3c232a

Browse files
authored
flips: unstable-2023-03-15 -> 196 (#382373)
2 parents 8c2be6d + 72e45fb commit e3c232a

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

pkgs/by-name/fl/flips/package.nix

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,39 +8,37 @@
88
wrapGAppsHook3,
99
}:
1010

11-
stdenv.mkDerivation {
11+
stdenv.mkDerivation rec {
1212
pname = "flips";
13-
version = "unstable-2023-03-15";
13+
version = "196";
1414

1515
src = fetchFromGitHub {
1616
owner = "Alcaro";
1717
repo = "Flips";
18-
rev = "fdd5c6e34285beef5b9be759c9b91390df486c66";
19-
hash = "sha256-uuHgpt7aWqiMTUILm5tAEGGeZrls3g/DdylYQgsfpTw=";
18+
tag = "v${version}";
19+
hash = "sha256-lQ88Iz607AcVzvN/jLGhOn7qiRe9pau9oQcLMt7JIT8=";
2020
};
2121

2222
nativeBuildInputs = [
2323
pkg-config
2424
wrapGAppsHook3
2525
];
26+
2627
buildInputs = [
2728
gtk3
2829
libdivsufsort
2930
];
31+
3032
patches = [ ./use-system-libdivsufsort.patch ];
33+
3134
makeFlags = [ "PREFIX=${placeholder "out"}" ];
32-
buildPhase = ''
33-
runHook preBuild
34-
./make.sh
35-
runHook postBuild
36-
'';
3735

38-
meta = with lib; {
36+
meta = {
3937
description = "Patcher for IPS and BPS files";
4038
homepage = "https://github.com/Alcaro/Flips";
41-
license = licenses.gpl3Plus;
39+
license = lib.licenses.gpl3Plus;
4240
maintainers = with lib.maintainers; [ aleksana ];
43-
platforms = platforms.linux;
41+
platforms = lib.platforms.linux;
4442
mainProgram = "flips";
4543
};
4644
}

0 commit comments

Comments
 (0)