nixpkgs/pkgs/tools/filesystems/avfs/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

28 lines
668 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse, xz }:
stdenv.mkDerivation rec {
pname = "avfs";
version = "1.1.0";
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2";
sha256 = "19rk2c0xd3mi66kr88ykrcn81fv09c09md0gf6mnm9z1bd7p7wx7";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse xz ];
configureFlags = [
"--enable-library"
"--enable-fuse"
"--disable-static"
];
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;
};
}