24 stdenv.mkDerivation rec {
29 url = "mirror://sourceforge/dar/${pname}-${version}.tar.gz";
30 sha256 = "sha256-2CuPqb17E2bHBuwRPA0QoIeTUq/lJZ3pFKbtqsRPktk=";
33 outputs = [ "out" "dev" ];
35 nativeBuildInputs = [ which ];
51 ] ++ lib.optionals stdenv.hostPlatform.isLinux [
54 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
61 "--disable-dar-static"
62 "--disable-build-html"
66 hardeningDisable = [ "format" ];
68 enableParallelBuilding = true;
72 rm -r "$out"/share/dar
76 homepage = "http://dar.linux.free.fr";
77 description = "Disk ARchiver, allows backing up files into indexed archives";
78 maintainers = with maintainers; [ izorkin ];
79 license = licenses.gpl2Only;
80 platforms = platforms.unix;