de69fe70ca
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/x64h5av7wnk88kjcs1rk3cv5lv1rqhcv-cachefilesd-0.10.10/bin/cachefilesd -v` and found version 0.10.10 - ran `/nix/store/x64h5av7wnk88kjcs1rk3cv5lv1rqhcv-cachefilesd-0.10.10/bin/cachefilesd --version` and found version 0.10.10 - found 0.10.10 with grep in /nix/store/x64h5av7wnk88kjcs1rk3cv5lv1rqhcv-cachefilesd-0.10.10 - found 0.10.10 in filename of file in /nix/store/x64h5av7wnk88kjcs1rk3cv5lv1rqhcv-cachefilesd-0.10.10
26 lines
656 B
Nix
26 lines
656 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cachefilesd-${version}";
|
|
version = "0.10.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://people.redhat.com/dhowells/fscache/${name}.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 ];
|
|
};
|
|
}
|