nixpkgs/pkgs/desktops/xfce/applications/xfburn/default.nix
2021-12-08 11:34:00 -03:00

17 lines
500 B
Nix

{ lib, mkXfceDerivation, docbook_xsl, exo, gtk3, libburn, libisofs, libxfce4ui, libxslt }:
mkXfceDerivation {
category = "apps";
pname = "xfburn";
version = "0.6.2";
sha256 = "sha256-AUonNhMs2HBF1WBLdZNYmASTOxYt6A6WDKNtvZaGXQk=";
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;
};
}