mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
new package: slop
This commit is contained in:
parent
3d68e0b0e2
commit
10ff6c3fe0
24
pkgs/tools/misc/slop/default.nix
Normal file
24
pkgs/tools/misc/slop/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user