about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/applications/xfburn/default.nix
blob: 3bd58caee9c0ee92516af6286f80e11043e62849 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}