Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 660 B view raw
1{ lib, stdenv, fetchurl, pkg-config, fuse, glib, attr }: 2 3stdenv.mkDerivation rec { 4 pname = "ciopfs"; 5 version = "0.4"; 6 7 src = fetchurl { 8 url = "http://www.brain-dump.org/projects/ciopfs/ciopfs-${version}.tar.gz"; 9 sha256 = "0sr9i9b3qfwbfvzvk00yrrg3x2xqk1njadbldkvn7hwwa4z5bm9l"; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 buildInputs = [ fuse glib attr ]; 14 15 makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; 16 17 meta = { 18 homepage = "https://www.brain-dump.org/projects/ciopfs/"; 19 description = "A case-insensitive filesystem layered on top of any other filesystem"; 20 license = lib.licenses.gpl2; 21 platforms = lib.platforms.linux; 22 }; 23}