Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "cachefilesd"; 5 version = "0.10.10"; 6 7 src = fetchurl { 8 url = "https://people.redhat.com/dhowells/fscache/${pname}-${version}.tar.bz2"; 9 sha256 = "00hsw4cdlm13wijlygp8f0aq6gxdp0skbxs9r2vh5ggs3s2hj0qd"; 10 }; 11 12 installFlags = [ 13 "ETCDIR=$(out)/etc" 14 "SBINDIR=$(out)/sbin" 15 "MANDIR=$(out)/share/man" 16 ]; 17 18 meta = with lib; { 19 description = "Local network file caching management daemon"; 20 homepage = "https://people.redhat.com/dhowells/fscache/"; 21 license = licenses.gpl2Plus; 22 platforms = platforms.linux; 23 maintainers = with maintainers; [ abbradar ]; 24 }; 25}