nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5 pkg-config,
6 fuse,
7 glib,
8 attr,
9}:
10
11stdenv.mkDerivation (finalAttrs: {
12 pname = "ciopfs";
13 version = "0.4";
14
15 src = fetchurl {
16 url = "http://www.brain-dump.org/projects/ciopfs/ciopfs-${finalAttrs.version}.tar.gz";
17 sha256 = "0sr9i9b3qfwbfvzvk00yrrg3x2xqk1njadbldkvn7hwwa4z5bm9l";
18 };
19
20 nativeBuildInputs = [ pkg-config ];
21 buildInputs = [
22 fuse
23 glib
24 attr
25 ];
26
27 makeFlags = [
28 "DESTDIR=$(out)"
29 "PREFIX="
30 ];
31
32 meta = {
33 homepage = "https://www.brain-dump.org/projects/ciopfs/";
34 description = "Case-insensitive filesystem layered on top of any other filesystem";
35 license = lib.licenses.gpl2Only;
36 platforms = lib.platforms.linux;
37 };
38})