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

Commits on Jan 16, 2020

  1. vmtouch: 1.3.0 -> 1.3.1

    Also fixup pname/name, and drop '-git-' in the middle of the two.
    (missed when moving off git revisions)
    dtzWill authored and alyssais committed Jan 16, 2020
    Copy the full SHA
    e2cf972 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/tools/misc/vmtouch/default.nix
5 changes: 2 additions & 3 deletions pkgs/tools/misc/vmtouch/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,13 @@

stdenv.mkDerivation rec {
pname = "vmtouch";
version = "1.3.0";
name = "${pname}-git-${version}";
version = "1.3.1";

src = fetchFromGitHub {
owner = "hoytech";
repo = "vmtouch";
rev = "v${version}";
sha256 = "0xpigfpwidk25k605y2m2g1952nzl5fgp0wn65hhn7hbra7srglf";
sha256 = "08da6apzfkfjwasn4dxrlfxqfx7arl28apdzac5nvm0fhvws0dxk";
};

buildInputs = [perl];