mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
read-edid: New package at version 3.0.2
This commit is contained in:
parent
5a5a5ade0f
commit
7233ca0488
25
pkgs/os-specific/linux/read-edid/default.nix
Normal file
25
pkgs/os-specific/linux/read-edid/default.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
@ -2684,6 +2684,8 @@ let
|
||||
|
||||
privateer = callPackage ../games/privateer { };
|
||||
|
||||
read-edid = callPackage ../os-specific/linux/read-edid { };
|
||||
|
||||
redmine = callPackage ../applications/version-management/redmine { };
|
||||
|
||||
rtmpdump = callPackage ../tools/video/rtmpdump { };
|
||||
|
Loading…
Reference in New Issue
Block a user