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: 59695de3b17a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a1b7c943775c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 29, 2016

  1. puddletag: 1.1.1 -> 1.2.0

    Peter Hoeg committed Nov 29, 2016
    Copy the full SHA
    66fb5ac View commit details
  2. Merge pull request #20784 from peterhoeg/u/puddletag

    puddletag: 1.1.1 -> 1.2.0
    FRidh authored Nov 29, 2016
    Copy the full SHA
    a1b7c94 View commit details
Showing with 7 additions and 6 deletions.
  1. +7 −6 pkgs/applications/audio/puddletag/default.nix
13 changes: 7 additions & 6 deletions pkgs/applications/audio/puddletag/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,20 @@

let
pypkgs = python2Packages;
pname = "puddletag";

in pypkgs.buildPythonApplication rec {
name = "puddletag-${version}";
version = "1.1.1";
name = "${pname}-${version}";
version = "1.2.0";

src = fetchFromGitHub {
owner = "keithgg";
repo = "puddletag";
rev = version;
sha256 = "0zmhc01qg64fb825b3kj0mb0r0d9hms30nqvhdks0qnv7ahahqrx";
repo = pname;
rev = "v${version}";
sha256 = "1g6wa91awy17z5b704yi9kfynnvfm9lkrvpfvwccscr1h8s3qmiz";
};

sourceRoot = "${name}-src/source";
sourceRoot = "${pname}-v${version}-src/source";

disabled = pypkgs.isPy3k; # work to support python 3 has not begun