File tree 2 files changed +47
-0
lines changed
2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ { lib
2
+ , rustPlatform
3
+ , fetchFromGitHub
4
+ , pkg-config
5
+ , glib
6
+ , cairo
7
+ , pango
8
+ , gdk-pixbuf
9
+ , atk
10
+ , gtk3
11
+ } :
12
+
13
+ rustPlatform . buildRustPackage rec {
14
+ pname = "czkawka" ;
15
+ version = "3.0.0" ;
16
+
17
+ src = fetchFromGitHub {
18
+ owner = "qarmin" ;
19
+ repo = pname ;
20
+ rev = version ;
21
+ sha256 = "1g5a9ns5lkiyk6hjsh08hgs41538dzj0a4lgn2c5cbad5psl0xa6" ;
22
+ } ;
23
+
24
+ cargoSha256 = "11ym2d7crp12w91111s3rv0gklkg2bzlq9g24cws4h7ipi0zfx5h" ;
25
+
26
+ nativeBuildInputs = [
27
+ pkg-config
28
+ ] ;
29
+
30
+ buildInputs = [
31
+ glib
32
+ cairo
33
+ pango
34
+ gdk-pixbuf
35
+ atk
36
+ gtk3
37
+ ] ;
38
+
39
+ meta = with lib ; {
40
+ description = "A simple, fast and easy to use app to remove unnecessary files from your computer" ;
41
+ homepage = "https://github.com/qarmin/czkawka" ;
42
+ license = with licenses ; [ mit ] ;
43
+ maintainers = with maintainers ; [ yanganto ] ;
44
+ } ;
45
+ }
Original file line number Diff line number Diff line change 1998
1998
1999
1999
cowsay = callPackage ../tools/misc/cowsay { };
2000
2000
2001
+ czkawka = callPackage ../tools/misc/czkawka { };
2002
+
2001
2003
cherrytree = callPackage ../applications/misc/cherrytree { };
2002
2004
2003
2005
chntpw = callPackage ../tools/security/chntpw { };
You can’t perform that action at this time.
0 commit comments