Merge pull request #46955 from timbertson/nix-pin

nix-pin: 0.3.4 -> 0.4.0
This commit is contained in:
Jörg Thalheim 2018-09-20 18:39:51 +01:00 committed by GitHub
commit 62aadba1fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
{ lib, pkgs, stdenv, fetchFromGitHub, mypy, python3, nix, git, makeWrapper }:
let self = stdenv.mkDerivation rec {
name = "nix-pin-${version}";
version = "0.3.4";
version = "0.4.0";
src = fetchFromGitHub {
owner = "timbertson";
repo = "nix-pin";
rev = "version-0.3.4";
sha256 = "03wdxai3hpv2v9jp7r91x8y36ryz6v1cczmx3d26g1bf0ij5svb8";
rev = "version-${version}";
sha256 = "1pccvc0iqapms7kidrh09g5fdx44x622r5l9k7bkmssp3v4c68vy";
};
buildInputs = [ python3 mypy makeWrapper ];
checkPhase = ''
@ -36,6 +36,7 @@ let self = stdenv.mkDerivation rec {
--set repo nix-pin \
--set type fetchFromGitHub \
--set rev 'version-{version}' \
--substitute rev 'version-''${{version}}' \
--modify-nix default.nix
'';
};