summary refs log tree commit diff
path: root/pkgs/tools/filesystems/mkspiffs/default.nix
blob: 086791de787a2827df6b4ddd41e089e6b55b86c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, git }:

# 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;
    sha256 = "1fgw1jqdlp83gv56mgnxpakky0q6i6f922niis4awvxjind8pbm1";
  };

  nativeBuildInputs = [ git ];
  buildFlags = [ "dist" ];
  installPhase = ''
    mkdir -p $out/bin
    cp mkspiffs $out/bin
  '';

  meta = with stdenv.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;
  };
}