Unverified Commit 1d1180f2 authored by Nick Cao's avatar Nick Cao
Browse files
parent d7a27f31
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -2,15 +2,22 @@

stdenv.mkDerivation rec {
  pname = "libisofs";
  version = "1.5.4";
  version = "1.5.6.pl01";

  outputs = [ "out" "dev" ];

  src = fetchurl {
    url = "http://files.libburnia-project.org/releases/${pname}-${version}.tar.gz";
    sha256 = "sha256-qqDtgKdQGXkxb1BbCwF/Kcug6lRjt1EUO60sNgIVqI4=";
    hash = "sha256-rB/TONZBdEyh+xVnkXGIt5vIwlBoMt1WiF/smGVrnyU=";
  };

  buildInputs = [ attr zlib ];
  propagatedBuildInputs = [ acl ];
  buildInputs = [
    acl
    attr
    zlib
  ];

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "http://libburnia-project.org/";