mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
32 lines
941 B
Nix
32 lines
941 B
Nix
{ stdenv, lib, fetchurl, cmake, libx86 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "read-edid";
|
|
version = "3.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.polypux.org/projects/read-edid/${pname}-${version}.tar.gz";
|
|
sha256 = "0vqqmwsgh2gchw7qmpqk6idgzcm5rqf2fab84y7gk42v1x2diin7";
|
|
};
|
|
|
|
patches = [ ./fno-common.patch ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt --replace 'COPYING' 'LICENSE'
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = lib.optional stdenv.hostPlatform.isx86 libx86;
|
|
|
|
cmakeFlags = [ "-DCLASSICBUILD=${if stdenv.hostPlatform.isx86 then "ON" else "OFF"}" ];
|
|
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|