nixpkgs/pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* 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
2017-08-01 22:03:30 +02:00

27 lines
680 B
Nix

{ stdenv, fetchurl, xz }:
stdenv.mkDerivation rec {
name = "mkinitcpio-nfs-utils-0.3";
src = fetchurl {
url = "https://sources.archlinux.org/other/mkinitcpio/${name}.tar.xz";
sha256 = "0fc93sfk41ycpa33083kyd7i4y00ykpbhj5qlw611bjghj4x946j";
# ugh, upstream...
name = "${name}.tar.gz";
};
makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];
postInstall = ''
rm -rf $out/usr
'';
meta = with stdenv.lib; {
homepage = https://archlinux.org/;
description = "ipconfig and nfsmount tools for root on NFS, ported from klibc";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}