mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
22f78a7499
* Replace git invocation for the project itself with the version number from the derivation * Replace git invocation for the submodule with 'unknown' (which is what the Makefile falls back to anyway) * Remove git as a dependency * Update sha256 -> hash
39 lines
895 B
Nix
39 lines
895 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
# Changing the variables CPPFLAGS and BUILD_CONFIG_NAME can be done by
|
|
# overriding the same-named attributes. See ./presets.nix for examples.
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mkspiffs";
|
|
version = "0.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igrr";
|
|
repo = "mkspiffs";
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-oa6Lmo2yb66IjtEKkZyJBgM/p7rdvmrKfgNd2rAM/Lk=";
|
|
};
|
|
|
|
buildFlags = [ "dist" ];
|
|
|
|
makeFlags = [
|
|
"VERSION=${version}"
|
|
"SPIFFS_VERSION=unknown"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp mkspiffs $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to build and unpack SPIFFS images";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/igrr/mkspiffs";
|
|
maintainers = with maintainers; [ haslersn ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "mkspiffs";
|
|
};
|
|
}
|