about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/emulators/yuzu/nx_tzdb.nix
blob: de847e2b0c782025fca4efdf67f6ebe797faf307 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, unzip, gitUpdater }:
stdenv.mkDerivation rec {
  pname = "nx_tzdb";
  version = "221202";

  src = fetchurl {
    url = "https://github.com/lat9nq/tzdb_to_nx/releases/download/${version}/${version}.zip";
    hash = "sha256-mRzW+iIwrU1zsxHmf+0RArU8BShAoEMvCz+McXFFK3c=";
  };

  nativeBuildInputs = [ unzip ];

  buildCommand = ''
    unzip $src -d $out
  '';

  passthru.updateScript = gitUpdater {
    url = "https://github.com/lat9nq/tzdb_to_nx.git";
  };
}