9e78f76ade
* 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.
27 lines
645 B
Nix
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;
|
|
};
|
|
}
|