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: cb7fcd0a7c6d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8d275f6d17c4
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 13, 2018

  1. wl-clipboard: init at 1.0.0

    dywedir committed Nov 13, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    dywedir Vlad M.
    Copy the full SHA
    1c26439 View commit details

Commits on Nov 15, 2018

  1. Merge pull request #50314 from dywedir/wl-clipboard

    wl-clipboard: init at 1.0.0
    Mic92 authored Nov 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8d275f6 View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/tools/misc/wl-clipboard/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
26 changes: 26 additions & 0 deletions pkgs/tools/misc/wl-clipboard/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
, wayland, wayland-protocols }:

stdenv.mkDerivation rec {
name = "wl-clipboard-${version}";
version = "1.0.0";

src = fetchFromGitHub {
owner = "bugaevc";
repo = "wl-clipboard";
rev = "v${version}";
sha256 = "03h6ajcc30w6928bkd4h6xfj4iy2359ww6hdlybq8mr1zwmb2h0q";
};

nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ];
buildInputs = [ wayland ];
mesonFlags = [ "-Dauto_features=enabled" ];

meta = with stdenv.lib; {
description = "Command-line copy/paste utilities for Wayland";
homepage = https://github.com/bugaevc/wl-clipboard;
license = licenses.gpl3;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2413,6 +2413,8 @@ with pkgs;
inherit (pythonPackages) sphinx;
};

wl-clipboard = callPackage ../tools/misc/wl-clipboard { };

zabbix-cli = callPackage ../tools/misc/zabbix-cli { };

### DEVELOPMENT / EMSCRIPTEN