nixpkgs/pkgs/development/tools/grabserial/default.nix

24 lines
671 B
Nix
Raw Normal View History

{ stdenv, fetchgit, pythonPackages }:
2019-08-13 21:52:01 +00:00
pythonPackages.buildPythonApplication {
2016-10-23 15:48:47 +00:00
name = "grabserial-1.9.3";
namePrefix = "";
src = fetchgit {
url = https://github.com/tbird20d/grabserial.git;
2016-10-23 15:48:47 +00:00
rev = "7cbf104b61ffdf68e6782a8e885050565399a014";
sha256 = "043r2p5jw0ymx8ka1d39q1ap39i7sliq5f4w3yr1n53lzshjmc5g";
};
propagatedBuildInputs = [ pythonPackages.pyserial ];
meta = {
description = "Python based serial dump and timing program";
homepage = https://github.com/tbird20d/grabserial;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ vmandela ];
platforms = stdenv.lib.platforms.linux;
};
}