2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2016-10-16 17:52:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cachefilesd";
|
2018-02-25 19:38:37 +00:00
|
|
|
version = "0.10.10";
|
2016-10-16 17:52:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://people.redhat.com/dhowells/fscache/${pname}-${version}.tar.bz2";
|
2018-02-25 19:38:37 +00:00
|
|
|
sha256 = "00hsw4cdlm13wijlygp8f0aq6gxdp0skbxs9r2vh5ggs3s2hj0qd";
|
2016-10-16 17:52:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"ETCDIR=$(out)/etc"
|
|
|
|
"SBINDIR=$(out)/sbin"
|
|
|
|
"MANDIR=$(out)/share/man"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-10-16 17:52:06 +01:00
|
|
|
description = "Local network file caching management daemon";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://people.redhat.com/dhowells/fscache/";
|
2016-10-16 17:52:06 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|