nixpkgs/pkgs/tools/filesystems/chunkfs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
696 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, perl, fuse }:
2014-01-02 17:20:10 +00:00
stdenv.mkDerivation rec {
version = "0.7";
pname = "chunkfs";
2014-01-02 17:20:10 +00:00
src = fetchurl {
url = "https://chunkfs.florz.de/chunkfs_${version}.tar.gz";
2014-01-02 17:20:10 +00:00
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/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
platforms = with lib.platforms; linux;
2014-01-02 17:20:10 +00:00
};
}