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

Commits on Mar 17, 2019

  1. adlplug: 1.0.0-beta.5 -> 1.0.0 (#57744)

    gnidorah authored and veprbl committed Mar 17, 2019
    Copy the full SHA
    9586811 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/audio/adlplug/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/audio/adlplug/default.nix
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@
, pname ? "ADLplug" }:

stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "v1.0.0-beta.5";
inherit pname;
version = "1.0.0";

src = fetchFromGitHub {
owner = "jpcima";
repo = "ADLplug";
rev = version;
sha256 = "1f8v61nv33xwpzmmk38dkr3fvm2j2xf0a74agxnl9p1yvy3a9w3s";
rev = "v${version}";
sha256 = "1rpd7v1rx74cv7nhs70ah0bly314rjzj70cp30mvhns2hzk66s3c";
fetchSubmodules = true;
};