nixpkgs/pkgs/os-specific/linux/cifs-utils/default.nix
Lluís Batlle i Rossell e0cfa58706 Updating the cifs utils (I think even the hash did not match for 4.5),
and adding some CIFS support to the sheevaplug kernel.

Patch by Rickard Nilsson.


svn path=/nixpkgs/trunk/; revision=32298
2012-02-15 11:08:38 +00:00

19 lines
503 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "cifs-utils-5.3";
src = fetchurl {
url = "ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/${name}.tar.bz2";
sha256 = "68e969c4107a872e2848992732dc11eafc7bdf084bec894c0ba677572de49b32";
};
makeFlags = "root_sbindir=$(out)/sbin";
meta = {
homepage = http://www.samba.org/linux-cifs/cifs-utils/;
description = "Tools for managing Linux CIFS client filesystems";
platforms = stdenv.lib.platforms.linux;
};
}