Add ciopfs
This commit is contained in:
parent
7bd3cf21a5
commit
1d44578b48
20
pkgs/tools/filesystems/ciopfs/default.nix
Normal file
20
pkgs/tools/filesystems/ciopfs/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig fuse glib attr ];
|
||||||
|
|
||||||
|
makeFlags = "DESTDIR=$(out) PREFIX=";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.brain-dump.org/projects/ciopfs/;
|
||||||
|
description = "A case-insensitive filesystem layered on top of any other filesystem";
|
||||||
|
license = "GPLv2";
|
||||||
|
};
|
||||||
|
}
|
@ -519,6 +519,8 @@ let
|
|||||||
|
|
||||||
cksfv = callPackage ../tools/networking/cksfv { };
|
cksfv = callPackage ../tools/networking/cksfv { };
|
||||||
|
|
||||||
|
ciopfs = callPackage ../tools/filesystems/ciopfs { };
|
||||||
|
|
||||||
colordiff = callPackage ../tools/text/colordiff { };
|
colordiff = callPackage ../tools/text/colordiff { };
|
||||||
|
|
||||||
convertlit = callPackage ../tools/text/convertlit { };
|
convertlit = callPackage ../tools/text/convertlit { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user