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

23 lines
641 B
Nix
Raw Normal View History

2012-07-26 03:16:57 +00:00
{ stdenv, fetchurl, pkgconfig, fuse, glib, attr }:
stdenv.mkDerivation rec {
name = "ciopfs-0.4";
src = fetchurl {
url = "http://www.brain-dump.org/projects/ciopfs/${name}.tar.gz";
sha256 = "0sr9i9b3qfwbfvzvk00yrrg3x2xqk1njadbldkvn7hwwa4z5bm9l";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse glib attr ];
2012-07-26 03:16:57 +00:00
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
2012-07-26 03:16:57 +00:00
meta = {
homepage = "https://www.brain-dump.org/projects/ciopfs/";
2012-07-26 03:16:57 +00:00
description = "A case-insensitive filesystem layered on top of any other filesystem";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
2012-07-26 03:16:57 +00:00
};
}