Skip to content

Commit

Permalink
raiseorlaunch: init at 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
winpat committed Oct 28, 2019
1 parent 1a25b14 commit 8cf9f35
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
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

0 comments on commit 8cf9f35

Please sign in to comment.