mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
26 lines
686 B
Nix
26 lines
686 B
Nix
{ stdenv, fetchurl, libuuid, lzo, zlib, acl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mtd-utils-${version}";
|
|
version = "1.5.2";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.infradead.org/pub/mtd-utils/mtd-utils-1.5.2.tar.bz2;
|
|
sha256 = "007lhsd8yb34l899r4m37whhzdw815cz4fnjbpnblfha524p7dax";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i -e s,/usr/local,, -e s,/usr,$out, common.mk
|
|
'';
|
|
|
|
buildInputs = [ libuuid lzo zlib acl ];
|
|
|
|
meta = {
|
|
description = "Tools for MTD filesystems";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
homepage = http://www.linux-mtd.infradead.org/;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|