depot/third_party/nixpkgs/pkgs/tools/security/decoder/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

39 lines
786 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, openssl
}:
stdenv.mkDerivation rec {
pname = "decoder";
version = "unstable-2021-11-20";
src = fetchFromGitHub {
owner = "PeterPawn";
repo = "decoder";
rev = "da0f826629d4e7b873f9d1a39f24c50ff0a68cd2";
sha256 = "sha256-1sT1/iwtc2ievmLuNuooy9b14pTs1ZC5noDwzFelk7w=";
};
buildInputs = [
openssl
];
makeFlags = [ "OPENSSL=y" ];
installPhase = ''
runHook preInstall
install -Dm755 src/decoder "$out/bin/decoder"
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/PeterPawn/decoder";
description = ''"secrets" decoding for FRITZ!OS devices'';
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ Luflosi ];
};
}