mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
29 lines
923 B
Nix
29 lines
923 B
Nix
{ stdenv, lib, 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = lib.optional (stdenv.isi686 || stdenv.isx86_64) libx86;
|
|
|
|
cmakeFlags = [ "-DCLASSICBUILD=${if stdenv.isi686 || stdenv.isx86_64 then "ON" else "OFF"}" ];
|
|
|
|
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;
|
|
};
|
|
}
|