mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
2060f547df
For whatever reason "selfNativeBuildInput = true" doesn't seeem to do the trick here? (reasons may include "it's not intended to solve this problem" ;))
28 lines
674 B
Nix
28 lines
674 B
Nix
{ stdenv, fetchurl, file, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "file-${version}";
|
|
version = "5.32";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.astron.com/pub/file/${name}.tar.gz"
|
|
"https://distfiles.macports.org/file/${name}.tar.gz"
|
|
];
|
|
sha256 = "0l1bfa0icng9vdwya00ff48fhvjazi5610ylbhl35qi13d6xqfc6";
|
|
};
|
|
|
|
nativeBuildInputs = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
|
|
buildInputs = [ zlib ];
|
|
|
|
doCheck = true;
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://darwinsys.com/file;
|
|
description = "A program that shows the type of files";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|