about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/applications/xfburn/default.nix
blob: d2ba14d27dff004cc550f7f391c197408d40ead4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, mkXfceDerivation, docbook_xsl, exo, gtk3, libburn, libisofs, libxfce4ui, libxslt }:

mkXfceDerivation {
  category = "apps";
  pname = "xfburn";
  version = "0.7.0";
  odd-unstable = false;

  sha256 = "sha256-/CuV2tqja5fa2H2mmU9BP6tZHoCZZML5d2LL/CG3rno=";

  nativeBuildInputs = [ libxslt docbook_xsl ];
  buildInputs = [ exo gtk3 libburn libisofs libxfce4ui ];

  meta = with lib; {
    description = "Disc burner and project creator for Xfce";
    mainProgram = "xfburn";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}