at 24.11-pre 26 lines 691 B view raw
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 mainProgram = "cachefilesd"; 21 homepage = "https://people.redhat.com/dhowells/fscache/"; 22 license = licenses.gpl2Plus; 23 platforms = platforms.linux; 24 maintainers = with maintainers; [ abbradar ]; 25 }; 26}