summary refs log tree commit diff
path: root/pkgs/tools/misc/aquosctl
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-02-27 15:53:47 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-02-27 23:07:12 +0100
commitb3bb79b6b1747755846a3c974b6ca0e865bb05ff (patch)
tree717ea76ce63c98811509a9545a7638c2f319a93d /pkgs/tools/misc/aquosctl
parent07ea91713431e6614849f6ff5824f076fffe9e9c (diff)
downloadnixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.tar
nixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.tar.gz
nixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.tar.bz2
nixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.tar.lz
nixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.tar.xz
nixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.tar.zst
nixpkgs-b3bb79b6b1747755846a3c974b6ca0e865bb05ff.zip
aquosctl: init at unstable-2014-04-06
Diffstat (limited to 'pkgs/tools/misc/aquosctl')
-rw-r--r--pkgs/tools/misc/aquosctl/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/misc/aquosctl/default.nix b/pkgs/tools/misc/aquosctl/default.nix
new file mode 100644
index 00000000000..d67005053b1
--- /dev/null
+++ b/pkgs/tools/misc/aquosctl/default.nix
@@ -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;
+  };
+}
+