Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

raiseorlaunch: init at 2.3.3 #71520

Merged
merged 1 commit into from Dec 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions pkgs/applications/misc/raiseorlaunch/default.nix
@@ -0,0 +1,23 @@
{ lib, python3Packages }:

python3Packages.buildPythonApplication rec {
pname = "raiseorlaunch";
version = "2.3.3";

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "3d694015d020a888b42564d56559213b94981ca2b32b952a49b2de4d029d2e59";
};

nativeBuildInputs = [ python3Packages.setuptools_scm ];
checkInputs = [ python3Packages.pytest ];
pythonPath = with python3Packages; [ i3ipc ];

meta = with lib; {
maintainers = with maintainers; [ winpat ];
description = "A run-or-raise-application-launcher for i3 window manager";
homepage = "https://github.com/open-dynaMIX/raiseorlaunch";
license = licenses.mit;
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -20526,6 +20526,8 @@ in

railcar = callPackage ../applications/virtualization/railcar {};

raiseorlaunch = callPackage ../applications/misc/raiseorlaunch {};

rapcad = libsForQt5.callPackage ../applications/graphics/rapcad { boost = boost159; };

rapid-photo-downloader = libsForQt5.callPackage ../applications/graphics/rapid-photo-downloader { };
Expand Down