mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #176622 from somasis/stw
stw: init at unstable-2022-02-04
This commit is contained in:
commit
87010ff68b
32
pkgs/applications/misc/stw/default.nix
Normal file
32
pkgs/applications/misc/stw/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, libX11
|
||||
, fontconfig
|
||||
, libXft
|
||||
, libXrender
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stw";
|
||||
version = "unstable-2022-02-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sineemore";
|
||||
repo = pname;
|
||||
rev = "c034e04ac912c157f9faa35cb769ba93d92486a0";
|
||||
sha256 = "sha256-YohHF1O0lm6QWJv/wkS4RVJvWaOjcYSZNls6tt4hbqo==";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 fontconfig libXft libXrender ];
|
||||
|
||||
makeFlags = [ "CC:=$(CC)" "PREFIX=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple text widget for X resembling the watch(1) command";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ somasis ];
|
||||
platforms = platforms.unix;
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
@ -29566,6 +29566,8 @@ with pkgs;
|
||||
ncurses = ncurses5;
|
||||
};
|
||||
|
||||
stw = callPackage ../applications/misc/stw { };
|
||||
|
||||
styx = callPackage ../applications/misc/styx { };
|
||||
|
||||
sway-launcher-desktop = callPackage ../applications/misc/sway-launcher-desktop { };
|
||||
|
Loading…
Reference in New Issue
Block a user