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/2configs/own-pkgs/wl-clipboard | |
parent | 2fec0118dcfc56f1af974e5e7f3e29fdbc30a85a (diff) | |
parent | bce038373a3477cd23758a038104b560404748dc (diff) |
Merge remote-tracking branch 'enklave/master'
Diffstat (limited to 'jeschli/2configs/own-pkgs/wl-clipboard')
-rw-r--r-- | jeschli/2configs/own-pkgs/wl-clipboard/default.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/jeschli/2configs/own-pkgs/wl-clipboard/default.nix b/jeschli/2configs/own-pkgs/wl-clipboard/default.nix deleted file mode 100644 index 349d910da..000000000 --- a/jeschli/2configs/own-pkgs/wl-clipboard/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ 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; - }; -} |