nixpkgs/pkgs/os-specific/linux/cachefilesd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
691 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-10-16 16:52:06 +00:00
stdenv.mkDerivation rec {
pname = "cachefilesd";
version = "0.10.10";
2016-10-16 16:52:06 +00:00
src = fetchurl {
url = "https://people.redhat.com/dhowells/fscache/${pname}-${version}.tar.bz2";
sha256 = "00hsw4cdlm13wijlygp8f0aq6gxdp0skbxs9r2vh5ggs3s2hj0qd";
2016-10-16 16:52:06 +00:00
};
installFlags = [
"ETCDIR=$(out)/etc"
"SBINDIR=$(out)/sbin"
"MANDIR=$(out)/share/man"
];
meta = with lib; {
2016-10-16 16:52:06 +00:00
description = "Local network file caching management daemon";
mainProgram = "cachefilesd";
homepage = "https://people.redhat.com/dhowells/fscache/";
2016-10-16 16:52:06 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}