about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/nickel/default.nix
blob: ea69852b7ab5c5bab8ff673a3905a999440691f5 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ lib
, rustPlatform
, fetchFromGitHub
, python3
, nix-update-script
, stdenv
}:

rustPlatform.buildRustPackage rec {
  pname = "nickel";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "tweag";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-bG0vNfKQpFQHDBfokvTpfXgVmKg6u/BcIz139pLwwsE=";
  };

  cargoHash = "sha256-qPKAozFXv94wgY99ugjsSuaN92SXZGgZwI2+7UlerHQ=";

  cargoBuildFlags = [ "-p nickel-lang-cli" ];

  nativeBuildInputs = [
    python3
  ];

  # Disable checks on Darwin because of issue described in https://github.com/tweag/nickel/pull/1454
  doCheck = !stdenv.isDarwin;

  passthru.updateScript = nix-update-script { };

  meta = with lib; {
    homepage = "https://nickel-lang.org/";
    description = "Better configuration for less";
    longDescription = ''
      Nickel is the cheap configuration language.

      Its purpose is to automate the generation of static configuration files -
      think JSON, YAML, XML, or your favorite data representation language -
      that are then fed to another system. It is designed to have a simple,
      well-understood core: it is in essence JSON with functions.
    '';
    changelog = "https://github.com/tweag/nickel/blob/${version}/RELEASES.md";
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres felschr ];
  };
}