Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b7d6a11159b6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c55ff13fea91
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 7, 2019

  1. grabserial: 1.9.3 -> 1.9.8

    Jonathan Ringer committed Sep 7, 2019
    Copy the full SHA
    a4ca05f View commit details

Commits on Sep 9, 2019

  1. Merge pull request #68245 from jonringer/bump-grabserial

    grabserial: 1.9.3 -> 1.9.8
    mmahut authored Sep 9, 2019
    Copy the full SHA
    c55ff13 View commit details
Showing with 14 additions and 14 deletions.
  1. +14 −14 pkgs/development/tools/grabserial/default.nix
28 changes: 14 additions & 14 deletions pkgs/development/tools/grabserial/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{ stdenv, fetchgit, pythonPackages }:
{ lib, fetchFromGitHub, pythonPackages }:

pythonPackages.buildPythonApplication {
pythonPackages.buildPythonApplication rec {
pname = "grabserial";
version = "1.9.8";

name = "grabserial-1.9.3";
namePrefix = "";

src = fetchgit {
url = https://github.com/tbird20d/grabserial.git;
rev = "7cbf104b61ffdf68e6782a8e885050565399a014";
sha256 = "043r2p5jw0ymx8ka1d39q1ap39i7sliq5f4w3yr1n53lzshjmc5g";
src = fetchFromGitHub {
owner = "tbird20d";
repo = "grabserial";
rev = "v${version}";
sha256 = "1xmy3js4hzsxlkxc172hkjzxsc34mmg3vfz61h24c7svmfzyhbd5";
};

propagatedBuildInputs = [ pythonPackages.pyserial ];

meta = {
meta = with lib; {
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;
homepage = "https://github.com/tbird20d/grabserial";
license = licenses.gpl2;
maintainers = with maintainers; [ vmandela ];
platforms = platforms.linux;
};
}