Merge pull request #25662 from dochang/yank

yank: 0.8.0 -> 0.8.2
This commit is contained in:
Jörg Thalheim 2017-05-20 17:34:40 +01:00 committed by GitHub
commit 0eaddb05bf

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchFromGitHub, xsel }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -8,13 +8,12 @@ stdenv.mkDerivation rec {
owner = "mptre"; owner = "mptre";
repo = "yank"; repo = "yank";
rev = "v${meta.version}"; rev = "v${meta.version}";
sha256 = "0d1vvmz6wg1m2byd22bxikywnm2970kyfsm46fhagxardsxbp6hj"; sha256 = "0nf9y3jsvfjxa3mgigywnyirznn1m4zjm1glnwndrjsjrkcpnzb5";
inherit name; inherit name;
}; };
installPhase = '' installFlags = [ "PREFIX=$(out)" ];
make PREFIX=$out install makeFlags = [ "YANKCMD=${xsel}/bin/xsel" ];
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://github.com/mptre/yank"; homepage = "https://github.com/mptre/yank";
@ -28,7 +27,7 @@ stdenv.mkDerivation rec {
''; '';
downloadPage = "https://github.com/mptre/yank/releases"; downloadPage = "https://github.com/mptre/yank/releases";
license = licenses.mit; license = licenses.mit;
version = "0.8.0"; version = "0.8.2";
maintainers = [ maintainers.dochang ]; maintainers = [ maintainers.dochang ];
platforms = platforms.unix; platforms = platforms.unix;
}; };