summary refs log tree commit diff
path: root/pkgs/os-specific/linux/read-edid/default.nix
blob: fdf2c4c9f12b2c080d5e41b928086e308f1a129f (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
{ stdenv, fetchurl, cmake, libx86 }:

stdenv.mkDerivation rec {
  name = "read-edid-${version}";
  version = "3.0.2";

  src = fetchurl {
    url = "http://www.polypux.org/projects/read-edid/${name}.tar.gz";
    sha256 = "0vqqmwsgh2gchw7qmpqk6idgzcm5rqf2fab84y7gk42v1x2diin7";
  };

  buildInputs = [ cmake libx86 ];

  patchPhase = ''
    substituteInPlace CMakeLists.txt --replace 'COPYING' 'LICENSE'
  '';

  meta = with stdenv.lib; {
    description = "Tool for reading and parsing EDID data from monitors";
    homepage = http://www.polypux.org/projects/read-edid/;
    license = licenses.bsd2; # Quoted: "This is an unofficial license. Let's call it BSD-like."
    maintainers = [ maintainers.dezgeg ];
    platforms = platforms.linux;
  };
}