mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{ appstream
|
|
, blueprint-compiler
|
|
, desktop-file-utils
|
|
, fetchFromGitHub
|
|
, gtk4
|
|
, lib
|
|
, libadwaita
|
|
, meson
|
|
, mesonEmulatorHook
|
|
, ninja
|
|
, pkg-config
|
|
, stdenv
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "raider";
|
|
version = "3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ADBeveridge";
|
|
repo = "raider";
|
|
rev = "v${version}";
|
|
hash = "sha256-LkGSEUoruWfEq/ttM3LkA/UjHc3ZrlvGF44HsJLntAo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
mesonEmulatorHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Permanently delete your files (also named File Shredder)";
|
|
longDescription = ''
|
|
Raider is a shredding program built for the GNOME
|
|
desktop. It is meant to remove files from your
|
|
computer permanently. Within a certain limit, it is
|
|
effective. However, the way data is written physically
|
|
to SSDs at the hardware level ensures that shredding
|
|
is never perfect, and no software can fix that.
|
|
However, top-level agencies are usually the only ones
|
|
who can recover such data, due to the time, effort,
|
|
money and patience required to extract it effectively.
|
|
'';
|
|
homepage = "https://apps.gnome.org/Raider";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "raider";
|
|
maintainers = with maintainers; [ benediktbroich aleksana ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|