mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
raider: 3.0.2 -> 3.1.0
Diff: https://github.com/ADBeveridge/raider/compare/v3.0.2...v3.1.0 Changelog: https://github.com/ADBeveridge/raider/releases/tag/v3.1.0
This commit is contained in:
parent
70954f1db3
commit
d83fe72f3c
1 changed files with 10 additions and 9 deletions
|
@ -15,15 +15,15 @@
|
||||||
wrapGAppsHook4,
|
wrapGAppsHook4,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "raider";
|
pname = "raider";
|
||||||
version = "3.0.2";
|
version = "3.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ADBeveridge";
|
owner = "ADBeveridge";
|
||||||
repo = "raider";
|
repo = "raider";
|
||||||
rev = "v${version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-fOv4Y5kBbZazFNkPrLS3D7LMLLvT/kIYmsCezsl/fxQ=";
|
hash = "sha256-X8VIpxOhfvOIf5CYQOBVrC9T6Dhgz/oMIQCaoRch4Oo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs =
|
nativeBuildInputs =
|
||||||
|
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||||
updateScript = nix-update-script { };
|
updateScript = nix-update-script { };
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Permanently delete your files (also named File Shredder)";
|
description = "Permanently delete your files (also named File Shredder)";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Raider is a shredding program built for the GNOME
|
Raider is a shredding program built for the GNOME
|
||||||
|
@ -63,12 +63,13 @@ stdenv.mkDerivation rec {
|
||||||
money and patience required to extract it effectively.
|
money and patience required to extract it effectively.
|
||||||
'';
|
'';
|
||||||
homepage = "https://apps.gnome.org/Raider";
|
homepage = "https://apps.gnome.org/Raider";
|
||||||
license = licenses.gpl3Plus;
|
changelog = "https://github.com/ADBeveridge/raider/releases/tag/v${finalAttrs.version}";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
mainProgram = "raider";
|
mainProgram = "raider";
|
||||||
maintainers = with maintainers; [
|
maintainers = with lib.maintainers; [
|
||||||
benediktbroich
|
benediktbroich
|
||||||
];
|
];
|
||||||
teams = [ lib.teams.gnome-circle ];
|
teams = [ lib.teams.gnome-circle ];
|
||||||
platforms = platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue