Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 24 lines 689 B view raw
1{ lib, stdenv, fetchurl, pkg-config, fuse, attr, asciidoc }: 2 3stdenv.mkDerivation rec { 4 pname = "disorderfs"; 5 version = "0.5.11"; 6 7 src = fetchurl { 8 url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.bz2"; 9 sha256 = "sha256-KqAMKVUykCgVdNyjacZjpVXqVdeob76v0iOuSd4TNIY="; 10 }; 11 12 nativeBuildInputs = [ pkg-config asciidoc ]; 13 14 buildInputs = [ fuse attr ]; 15 16 installFlags = [ "PREFIX=$(out)" ]; 17 18 meta = with lib; { 19 description = "An overlay FUSE filesystem that introduces non-determinism into filesystem metadata"; 20 license = licenses.gpl3; 21 platforms = platforms.linux; 22 maintainers = with maintainers; [ pSub ]; 23 }; 24}