
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
69 lines
1.4 KiB
Nix
69 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
qt5,
|
|
john,
|
|
makeWrapper,
|
|
makeDesktopItem,
|
|
copyDesktopItems,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "johnny";
|
|
version = "2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openwall";
|
|
repo = "johnny";
|
|
rev = "v${version}";
|
|
hash = "sha256-fwRvyQbRO63iVt9AHlfl+Cv4NRFQmyVsZUQLxmzGjAY=";
|
|
};
|
|
|
|
buildInputs = [
|
|
john
|
|
qt5.qtbase
|
|
];
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
copyDesktopItems
|
|
qt5.wrapQtAppsHook
|
|
qt5.qmake
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D ${pname} $out/bin/${pname}
|
|
wrapProgram $out/bin/${pname} \
|
|
--prefix PATH : ${lib.makeBinPath [ john ]}
|
|
install -D README $out/share/doc/${pname}/README
|
|
install -D LICENSE $out/share/licenses/${pname}/LICENSE
|
|
install -D resources/icons/${pname}_128.png $out/share/pixmaps/${pname}.png
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "Johnny";
|
|
desktopName = "Johnny";
|
|
comment = "A GUI for John the Ripper";
|
|
icon = pname;
|
|
exec = pname;
|
|
terminal = false;
|
|
categories = [
|
|
"Application"
|
|
"System"
|
|
];
|
|
startupNotify = true;
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://openwall.info/wiki/john/johnny";
|
|
description = "Open Source GUI frontend for John the Ripper";
|
|
mainProgram = "johnny";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ Misaka13514 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|