Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aa64d8174b07
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0eaddb05bf52
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on May 10, 2017

  1. yank: 0.8.0 -> 0.8.2

    dochang committed May 10, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LnL7 Daiderd Jordan
    Copy the full SHA
    ee30a67 View commit details

Commits on May 20, 2017

  1. yank: depends on xsel

    Mic92 committed May 20, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LnL7 Daiderd Jordan
    Copy the full SHA
    6f5c293 View commit details
  2. Merge pull request #25662 from dochang/yank

    yank: 0.8.0 -> 0.8.2
    Mic92 authored May 20, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LnL7 Daiderd Jordan
    Copy the full SHA
    0eaddb0 View commit details
Showing with 5 additions and 6 deletions.
  1. +5 −6 pkgs/tools/misc/yank/default.nix
11 changes: 5 additions & 6 deletions pkgs/tools/misc/yank/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, fetchFromGitHub, xsel }:

stdenv.mkDerivation rec {

@@ -8,13 +8,12 @@ stdenv.mkDerivation rec {
owner = "mptre";
repo = "yank";
rev = "v${meta.version}";
sha256 = "0d1vvmz6wg1m2byd22bxikywnm2970kyfsm46fhagxardsxbp6hj";
sha256 = "0nf9y3jsvfjxa3mgigywnyirznn1m4zjm1glnwndrjsjrkcpnzb5";
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";
@@ -28,7 +27,7 @@ stdenv.mkDerivation rec {
'';
downloadPage = "https://github.com/mptre/yank/releases";
license = licenses.mit;
version = "0.8.0";
version = "0.8.2";
maintainers = [ maintainers.dochang ];
platforms = platforms.unix;
};