yank: depends on xsel

This commit is contained in:
Jörg Thalheim 2017-05-20 17:33:42 +01:00
parent ee30a67a86
commit 6f5c293bc5
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchFromGitHub, xsel }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -12,9 +12,8 @@ stdenv.mkDerivation rec {
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";