tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
raider: init at 1.3.1
Benedikt Broich
3 years ago
2e208519
4f04af82
+60
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
raider
default.nix
top-level
all-packages.nix
+58
pkgs/applications/misc/raider/default.nix
···
1
1
+
{ appstream-glib
2
2
+
, blueprint-compiler
3
3
+
, desktop-file-utils
4
4
+
, fetchFromGitHub
5
5
+
, gettext
6
6
+
, glib
7
7
+
, gtk4
8
8
+
, itstool
9
9
+
, lib
10
10
+
, libadwaita
11
11
+
, meson
12
12
+
, mesonEmulatorHook
13
13
+
, ninja
14
14
+
, pkg-config
15
15
+
, stdenv
16
16
+
, wrapGAppsHook4
17
17
+
}:
18
18
+
stdenv.mkDerivation rec {
19
19
+
pname = "raider";
20
20
+
version = "1.3.1";
21
21
+
22
22
+
src = fetchFromGitHub {
23
23
+
owner = "ADBeveridge";
24
24
+
repo = "raider";
25
25
+
rev = "v${version}";
26
26
+
hash = "sha256-fyE0CsQp2UVh+7bAQo+GHEF0k8Gwl9j4qclh04AQiVI=";
27
27
+
};
28
28
+
29
29
+
nativeBuildInputs = [
30
30
+
appstream-glib
31
31
+
blueprint-compiler
32
32
+
desktop-file-utils
33
33
+
itstool
34
34
+
meson
35
35
+
ninja
36
36
+
pkg-config
37
37
+
wrapGAppsHook4
38
38
+
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
39
39
+
mesonEmulatorHook
40
40
+
];
41
41
+
42
42
+
buildInputs = [
43
43
+
gtk4
44
44
+
libadwaita
45
45
+
];
46
46
+
47
47
+
postInstall = ''
48
48
+
glib-compile-schemas $out/share/glib-2.0/schemas
49
49
+
'';
50
50
+
51
51
+
meta = with lib; {
52
52
+
description = "Securely delete your files";
53
53
+
homepage = "https://apps.gnome.org/app/com.github.ADBeveridge.Raider";
54
54
+
license = licenses.gpl3Plus;
55
55
+
maintainers = with maintainers; [ benediktbroich ];
56
56
+
platforms = platforms.unix;
57
57
+
};
58
58
+
}
+2
pkgs/top-level/all-packages.nix
···
11075
11075
11076
11076
quilt = callPackage ../development/tools/quilt { };
11077
11077
11078
11078
+
raider = callPackage ../applications/misc/raider { };
11079
11079
+
11078
11080
railway = callPackage ../development/tools/railway { };
11079
11081
11080
11082
quota = if stdenv.isLinux then linuxquota else unixtools.quota;