mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
aquosctl: init at unstable-2014-04-06
This commit is contained in:
parent
07ea917134
commit
b3bb79b6b1
34
pkgs/tools/misc/aquosctl/default.nix
Normal file
34
pkgs/tools/misc/aquosctl/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "aquosctl";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit pname;
|
||||
version = "unstable-2014-04-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jdwhite";
|
||||
repo = pname;
|
||||
rev = "b5e48d9ef848188b97dfb24bfcc99d5196cab5f6";
|
||||
hash = "sha256-FA3LR58KMG5RzSxxnOkVw1+inM/gMGPtw5+JQwSHBYs=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm0755 aquosctl $out/bin/aquosctl
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sharp Aquos television RS-232 control application";
|
||||
homepage = "https://github.com/jdwhite/aquosctl";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -1020,6 +1020,8 @@ with pkgs;
|
||||
|
||||
albert = libsForQt5.callPackage ../applications/misc/albert {};
|
||||
|
||||
aquosctl = callPackage ../tools/misc/aquosctl { };
|
||||
|
||||
arch-install-scripts = callPackage ../tools/misc/arch-install-scripts {};
|
||||
|
||||
auditwheel = callPackage ../tools/package-management/auditwheel { };
|
||||
|
Loading…
Reference in New Issue
Block a user