Unverified Commit abe0bbf0 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

rdrview: unstable-2021-05-30 -> 0.1.3 (#368800)

parents 3a41eb9e 2b7e55c3
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -6,17 +6,18 @@
  curl,
  libseccomp,
  installShellFiles,
  nix-update-script,
}:

stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
  pname = "rdrview";
  version = "unstable-2021-05-30";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "eafer";
    repo = "rdrview";
    rev = "444ce3d6efd8989cd6ecfdc0560071b20e622636";
    sha256 = "02VC8r8PdcAfMYB0/NtbPnhsWatpLQc4mW4TmSE1+zk=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-UFHRsaLGa/jv/S+VXtXIMgLuQUPgqbRgD35bBrJyuZA=";
  };

  buildInputs = [
@@ -42,4 +43,6 @@ stdenv.mkDerivation {
    maintainers = with maintainers; [ djanatyn ];
    mainProgram = "rdrview";
  };
}

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