summary refs log blame commit diff
path: root/pkgs/os-specific/linux/cachefilesd/default.nix
blob: 44c2cfff5a2b9d527ba4ca7e973e24a1accfcee7 (plain) (tree)
1
2
3
4
5
6
7
8
9


                         
                        
                      

                  
                                                                                   
                                                                    









                                                                 
                                                           




                                                 
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "cachefilesd";
  version = "0.10.10";

  src = fetchurl {
    url = "https://people.redhat.com/dhowells/fscache/${pname}-${version}.tar.bz2";
    sha256 = "00hsw4cdlm13wijlygp8f0aq6gxdp0skbxs9r2vh5ggs3s2hj0qd";
  };

  installFlags = [
    "ETCDIR=$(out)/etc"
    "SBINDIR=$(out)/sbin"
    "MANDIR=$(out)/share/man"
  ];

  meta = with stdenv.lib; {
    description = "Local network file caching management daemon";
    homepage = https://people.redhat.com/dhowells/fscache/;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ abbradar ];
  };
}