new package: slop

This commit is contained in:
Marius Bakke 2015-03-04 17:41:01 +00:00
parent 3d68e0b0e2
commit 10ff6c3fe0
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake, gengetopt, libX11, libXext, cppcheck}:
stdenv.mkDerivation rec {
name = "slop-${version}";
version = "4.1.15";
src = fetchurl {
url = "https://github.com/naelstrof/slop/archive/v${version}.tar.gz";
sha256 = "e20fd47de898abcb537c8100faed859eef4955d7784dbc52470570dae403f02e";
};
buildInputs = [ cmake gengetopt libX11 libXext ]
++ stdenv.lib.optional doCheck cppcheck;
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/naelstrof/slop;
description = "Queries a selection from the user and prints to stdout";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with maintainers; [ mbakke ];
};
}

View file

@ -12321,6 +12321,8 @@ let
slmenu = callPackage ../applications/misc/slmenu {};
slop = callPackage ../tools/misc/slop {};
slrn = callPackage ../applications/networking/newsreaders/slrn { };
sooperlooper = callPackage ../applications/audio/sooperlooper { };