1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00
nixpkgs/pkgs/desktops/lxqt/optional/qlipper/default.nix

27 lines
649 B
Nix
Raw Normal View History

2016-10-15 11:46:12 +01:00
{ stdenv, fetchFromGitHub, cmake, qt5 }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "qlipper";
2017-02-19 14:52:26 +00:00
version = "5.0.0";
2016-10-15 11:46:12 +01:00
srcs = fetchFromGitHub {
owner = "pvanek";
repo = pname;
2017-02-19 14:52:26 +00:00
rev = version;
sha256 = "1y34vadxxjg2l7021y1rpvb8x6pzhk2sk9p35wfm9inilwi8bg8j";
2016-10-15 11:46:12 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qt5.qtbase qt5.qttools ];
meta = with stdenv.lib; {
description = "Cross-platform clipboard history applet";
homepage = https://github.com/pvanek/qlipper;
license = licenses.gpl2Plus;
platforms = with platforms; unix;
2017-02-19 14:52:26 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-15 11:46:12 +01:00
};
}