nix-pin: 0.3.0 -> 0.3.1

This commit is contained in:
Tim Cuthbertson 2018-05-09 21:14:44 +10:00
parent a9cbf62c60
commit 04703916cf
1 changed files with 4 additions and 4 deletions

View File

@ -1,15 +1,15 @@
{ lib, pkgs, stdenv, fetchFromGitHub, mypy, python3, nix, git, makeWrapper }: { lib, pkgs, stdenv, fetchFromGitHub, mypy, python3, nix, git, makeWrapper }:
let self = stdenv.mkDerivation rec { let self = stdenv.mkDerivation rec {
name = "nix-pin-${version}"; name = "nix-pin-${version}";
version = "0.3.0"; version = "0.3.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "timbertson"; owner = "timbertson";
repo = "nix-pin"; repo = "nix-pin";
rev = "version-0.3.0"; rev = "version-0.3.1";
sha256 = "1kq50v8m8y1wji63b7y3wh6nv3ahvdxvvbsb07day2zzf5ysy8kj"; sha256 = "1sldbrz33wz30d3vv3d2clyqyd6x1y6h6xjz1xv55fa97ig1h481";
}; };
buildInputs = [ python3 mypy makeWrapper ]; buildInputs = [ python3 mypy makeWrapper ];
buildPhase = '' checkPhase = ''
mypy bin/* mypy bin/*
''; '';
installPhase = '' installPhase = ''