diff options
author | lassulus <lassulus@lassul.us> | 2020-04-24 15:31:55 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-04-24 15:31:55 +0200 |
commit | 36223e201b5726fa0100d327903ee5e733db658f (patch) | |
tree | 67389161b8898c5b1737573e9c489d1e7fcf65fa /jeschli/5pkgs/firefox/wl-clipboard | |
parent | 2fec0118dcfc56f1af974e5e7f3e29fdbc30a85a (diff) | |
parent | bce038373a3477cd23758a038104b560404748dc (diff) |
Merge remote-tracking branch 'enklave/master'
Diffstat (limited to 'jeschli/5pkgs/firefox/wl-clipboard')
-rw-r--r-- | jeschli/5pkgs/firefox/wl-clipboard/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/jeschli/5pkgs/firefox/wl-clipboard/default.nix b/jeschli/5pkgs/firefox/wl-clipboard/default.nix new file mode 100644 index 000000000..349d910da --- /dev/null +++ b/jeschli/5pkgs/firefox/wl-clipboard/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig +, wayland, wayland-protocols }: + +stdenv.mkDerivation rec { + pname = "wl-clipboard"; + version = "2.0.0"; + + src = fetchFromGitHub { + owner = "bugaevc"; + repo = "wl-clipboard"; + rev = "v${version}"; + sha256 = "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d"; + }; + + nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ]; + buildInputs = [ wayland ]; + + 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; + }; +} |