blob: 980b37a910df2a846bfef89386fbfd045618fd1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, glib
, cairo
, pango
, atk
, gdk-pixbuf
, gtk4
, wrapGAppsHook4
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "szyszka";
version = "3.0.0";
src = fetchFromGitHub {
owner = "qarmin";
repo = "szyszka";
rev = version;
hash = "sha256-LkXGKDFKaY+mg53ZEO4h2br/4eRle/QbSQJTVEMpAoY=";
};
cargoHash = "sha256-WJR1BogNnQoZeOt5yBFzjYNZS8OmE84R1FbQpHTb7V0=";
nativeBuildInputs = [
pkg-config
wrapGAppsHook4
];
buildInputs = [
glib
cairo
pango
atk
gdk-pixbuf
gtk4
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Foundation
]);
postInstall = ''
install -m 444 \
-D data/com.github.qarmin.szyszka.desktop \
-t $out/share/applications
install -m 444 \
-D data/com.github.qarmin.szyszka.metainfo.xml \
-t $out/share/metainfo
install -m 444 \
-D data/icons/com.github.qarmin.szyszka.svg \
-t $out/share/icons/hicolor/scalable/apps
'';
meta = with lib; {
description = "Simple but powerful and fast bulk file renamer";
homepage = "https://github.com/qarmin/szyszka";
license = licenses.mit;
maintainers = with maintainers; [ kranzes ];
mainProgram = "szyszka";
};
}
|