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: ce085a8ee8a5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd6338144481
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 3, 2019

  1. video2midi: 0.3.9.1 > 0.3.9.5

    derchrisuk authored and Jon committed Oct 3, 2019
    Copy the full SHA
    dd63381 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/audio/video2midi/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/audio/video2midi/default.nix
Original file line number Diff line number Diff line change
@@ -8,15 +8,15 @@ let
});
in pythonPackages.buildPythonApplication rec {
pname = "video2midi";
version = "0.3.9.1";
version = "0.3.9.5";

format = "other";

src = fetchFromGitHub {
owner = "svsdval";
repo = pname;
rev = version;
sha256 = "1ndzhfng8z5080n1xkcavw21dm6rjz0x1954v9llifsdmf4cpn8y";
sha256 = "1jc50zimc64ilc1as3dyh16lsygwqyvi381mw8si8m9j3pw6may4";
};

propagatedBuildInputs = with pythonPackages; [ opencv3_ midiutil pygame pyopengl ];