mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #3713 from paulkoerbitz/clipit
Add package for ClipIt, a lightweight GTK clipboard manager
This commit is contained in:
commit
f25f21b78c
20
pkgs/applications/misc/clipit/default.nix
Normal file
20
pkgs/applications/misc/clipit/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ fetchurl, stdenv, intltool, pkgconfig, gtk, xdotool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "clipit-${version}";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/downloads/shantzu/ClipIt/${name}.tar.gz";
|
||||
sha256 = "0jrwn8qfgb15rwspdp1p8hb1nc0ngmpvgr87d4k3lhlvqg2cfqva";
|
||||
};
|
||||
|
||||
buildInputs = [ intltool pkgconfig gtk xdotool ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lightweight GTK+ Clipboard Manager";
|
||||
homepage = "http://clipit.rspwn.com";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -8303,6 +8303,8 @@ let
|
||||
|
||||
cinelerra = callPackage ../applications/video/cinelerra { };
|
||||
|
||||
clipit = callPackage ../applications/misc/clipit { };
|
||||
|
||||
cmus = callPackage ../applications/audio/cmus { };
|
||||
|
||||
compiz = callPackage ../applications/window-managers/compiz {
|
||||
|
Loading…
Reference in New Issue
Block a user