f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
26 lines
655 B
Nix
26 lines
655 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cachefilesd-${version}";
|
|
version = "0.10.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://people.redhat.com/dhowells/fscache/${name}.tar.bz2";
|
|
sha256 = "1jkb3qd8rcmli3g2qgcpp1f9kklil4qgy86w7pg2cpv10ikyr5y8";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|