diff options
Diffstat (limited to 'pkgs/applications/misc/stw/default.nix')
-rw-r--r-- | pkgs/applications/misc/stw/default.nix | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/applications/misc/stw/default.nix b/pkgs/applications/misc/stw/default.nix deleted file mode 100644 index 689fc9e81ce7..000000000000 --- a/pkgs/applications/misc/stw/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ 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 = "Simple text widget for X resembling the watch(1) command"; - license = licenses.mit; - maintainers = with maintainers; [ somasis ]; - platforms = platforms.unix; - broken = stdenv.isDarwin; - mainProgram = "stw"; - }; -} |