diff options
author | lassulus <lass@aidsballs.de> | 2016-08-21 13:16:51 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-08-21 13:16:51 +0200 |
commit | 3eb5f58a0ee9778006d4e37fee17e0b3e096a52a (patch) | |
tree | 6e4edc6f0029fcf3f6d3d34a972c05e14d3951cd /krebs | |
parent | 037cefc30ab756e6aea19ba096fe18e6e38ffffe (diff) | |
parent | 66f5efe0f5819a3c6dacd33b547921e8379fcb3d (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/5pkgs/vncdotool/default.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/krebs/5pkgs/vncdotool/default.nix b/krebs/5pkgs/vncdotool/default.nix deleted file mode 100644 index 95e2ca706..000000000 --- a/krebs/5pkgs/vncdotool/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ lib, pythonPackages, fetchurl, ... }: -with pythonPackages; buildPythonPackage rec { - name = lib.removeSuffix ".tar.gz" (builtins.baseNameOf src.name); - - src = fetchurl { - url = https://pypi.python.org/packages/source/v/vncdotool/vncdotool-0.9.0.tar.gz; - sha256 = "1hl44w4x9c8air0g6kp9h1af2vj4lmc50vnsxmca9g080740iyvi"; - }; - - propagatedBuildInputs = [ - twisted - pillow - ]; - - meta = { - homepage = https://github.com/sibson/vncdotool; - description = "A command line VNC client and python library"; - license = lib.licenses.mit; - }; -} |