nixpkgs/pkgs/tools/misc/edid-decode/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
811 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchgit
, unstableGitUpdater
}:
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation {
pname = "edid-decode";
version = "unstable-2024-01-29";
outputs = [
"out"
"man"
];
2018-02-04 22:49:16 +00:00
src = fetchgit {
2018-12-31 15:21:23 +00:00
url = "git://linuxtv.org/edid-decode.git";
rev = "7a27b339cf5ee1ab431431a844418a7f7c16d167";
hash = "sha256-y+g+E4kaQh6j+3GvHdcVEGQu/zOkGyW/HazUHG0DCxM=";
2018-02-04 22:49:16 +00:00
};
preBuild = ''
export DESTDIR=$out
export bindir=/bin
export mandir=/share/man
2018-02-04 22:49:16 +00:00
'';
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
2018-02-04 22:49:16 +00:00
description = "EDID decoder and conformance tester";
homepage = "https://git.linuxtv.org/edid-decode.git";
license = with licenses; [ mit ];
maintainers = with maintainers; [ Madouura ];
platforms = platforms.all;
2023-11-27 01:17:53 +00:00
mainProgram = "edid-decode";
2018-02-04 22:49:16 +00:00
};
}