nixpkgs/pkgs/tools/filesystems/avfs/default.nix
Niklas Hambüchen 9e78f76ade treewide: Remove unnecessary --disable-static (#66759)
* freetype: Remove unnecessary `--disable-static`.

The true-by-default `dontDisableStatic` already takes care of it.

Fixes freetype not being overridable to have static libs.

* treewide: Remove unnecessary `--disable-static`.

The true-by-default `dontDisableStatic` already takes care of it.

Fixes these packages not being overridable to have static libs.
2019-08-31 08:10:53 -04:00

27 lines
645 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse, xz }:
stdenv.mkDerivation rec {
pname = "avfs";
version = "1.1.1";
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2";
sha256 = "0fxzigpyi08ipqz30ihjcpqmmx8g7r1kqdqq1bnnznvnhrzyygn8";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse xz ];
configureFlags = [
"--enable-library"
"--enable-fuse"
];
meta = {
homepage = http://avf.sourceforge.net/;
description = "Virtual filesystem that allows browsing of compressed files";
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2;
};
}