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 {
@ -12,9 +12,8 @@ stdenv.mkDerivation rec {
inherit name;
};
installPhase = ''
make PREFIX=$out install
'';
installFlags = [ "PREFIX=$(out)" ];
makeFlags = [ "YANKCMD=${xsel}/bin/xsel" ];
meta = with stdenv.lib; {
homepage = "https://github.com/mptre/yank";