repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git]
/
pkgs
/
desktops
/
xfce
/
applications
/
xfburn
/
default.nix
blob
9212c6857c199ddb3d39180a2c6c70f3e45db8d0
1
{
2
mkXfceDerivation,
3
lib,
4
docbook_xsl,
5
exo,
6
gst_all_1,
7
gtk3,
8
libburn,
9
libgudev,
10
libisofs,
11
libxfce4ui,
12
libxslt,
13
}:
14
15
mkXfceDerivation {
16
category = "apps";
17
pname = "xfburn";
18
version = "0.7.2";
19
odd-unstable = false;
20
21
sha256 = "sha256-eJ+MxNdJiDTLW4GhrwgQIyFuOSTWsF34Oet9HJAtIqI=";
22
23
nativeBuildInputs = [
24
libxslt
25
docbook_xsl
26
];
27
28
buildInputs = [
29
exo
30
gst_all_1.gstreamer
31
gst_all_1.gst-plugins-base
32
gtk3
33
libburn
34
libgudev
35
libisofs
36
libxfce4ui
37
];
38
39
meta = with lib; {
40
description = "Disc burner and project creator for Xfce";
41
mainProgram = "xfburn";
42
maintainers = with maintainers; [ ] ++ teams.xfce.members;
43
};
44
}