nixpkgs/pkgs/tools/filesystems/chunkfs/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

31 lines
712 B
Nix

{ stdenv, fetchurl, perl, fuse }:
stdenv.mkDerivation rec {
version = "0.7";
name = "chunkfs-${version}";
src = fetchurl {
url = "http://chunkfs.florz.de/chunkfs_${version}.tar.gz";
sha256 = "4c168fc2b265a6ba34afc565707ea738f34375325763c0596f2cfa1c9b8d40f1";
};
buildInputs = [perl fuse];
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
preInstall = ''
mkdir -p $out/bin
mkdir -p $out/share/man/man1
'';
meta = {
description = "FUSE filesystems for viewing chunksync-style directory trees as a block device and vice versa";
homepage = http://chunkfs.florz.de/;
license = stdenv.lib.licenses.gpl2;
platforms = with stdenv.lib.platforms; linux;
};
}