mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
728 B
Nix
26 lines
728 B
Nix
{ stdenv, fetchurl, autoreconfHook, docutils, pkgconfig
|
|
, kerberos, keyutils, pam, talloc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cifs-utils";
|
|
version = "6.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/pub/linux-cifs/cifs-utils/${pname}-${version}.tar.bz2";
|
|
sha256 = "175cp509wn1zv8p8mv37hkf6sxiskrsxdnq22mhlsg61jazz3n0q";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook docutils pkgconfig ];
|
|
|
|
buildInputs = [ kerberos keyutils pam talloc ];
|
|
|
|
makeFlags = [ "root_sbindir=$(out)/sbin" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.samba.org/linux-cifs/cifs-utils/;
|
|
description = "Tools for managing Linux CIFS client filesystems";
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl3;
|
|
};
|
|
}
|