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

Commits on May 9, 2018

  1. nix-pin: 0.3.0 -> 0.3.1

    timbertson committed May 9, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    marcuslimdw Marcus
    Copy the full SHA
    0470391 View commit details
  2. Merge pull request #40215 from timbertson/nix-pin

    nix-pin: 0.3.0 -> 0.3.1
    xeji authored May 9, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ab9fa89 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/package-management/nix-pin/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/package-management/nix-pin/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ lib, pkgs, stdenv, fetchFromGitHub, mypy, python3, nix, git, makeWrapper }:
let self = stdenv.mkDerivation rec {
name = "nix-pin-${version}";
version = "0.3.0";
version = "0.3.1";
src = fetchFromGitHub {
owner = "timbertson";
repo = "nix-pin";
rev = "version-0.3.0";
sha256 = "1kq50v8m8y1wji63b7y3wh6nv3ahvdxvvbsb07day2zzf5ysy8kj";
rev = "version-0.3.1";
sha256 = "1sldbrz33wz30d3vv3d2clyqyd6x1y6h6xjz1xv55fa97ig1h481";
};
buildInputs = [ python3 mypy makeWrapper ];
buildPhase = ''
checkPhase = ''
mypy bin/*
'';
installPhase = ''