d8b59303c3
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8/bin/xorriso --help` got 0 exit code - ran `/nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8/bin/xorriso help` got 0 exit code - ran `/nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8/bin/xorriso --version` and found version 1.4.8 - ran `/nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8/bin/xorriso version` and found version 1.4.8 - ran `/nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8/bin/xorriso --help` and found version 1.4.8 - ran `/nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8/bin/xorriso help` and found version 1.4.8 - found 1.4.8 with grep in /nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8 - found 1.4.8 in filename of file in /nix/store/wicrls5mhrpncr2012ly2l35iqrcxg19-libisoburn-1.4.8 cc "@vrthra"
23 lines
682 B
Nix
23 lines
682 B
Nix
{ stdenv, fetchurl, acl, attr, zlib, libburn, libisofs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libisoburn-${version}";
|
|
version = "1.4.8";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.libburnia-project.org/releases/${name}.tar.gz";
|
|
sha256 = "19d53j17pn18vfxxqqlqwam5lm21ljyp8nai5434068g7x3m1kwi";
|
|
};
|
|
|
|
buildInputs = [ attr zlib libburn libisofs ];
|
|
propagatedBuildInputs = [ acl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://libburnia-project.org/;
|
|
description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD ";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|