Skip to content

Commit

Permalink
glpaper: init at unstable-2020-03-30
Browse files Browse the repository at this point in the history
	modified:   maintainers/maintainer-list.nix
	new file:   pkgs/development/tools/glpaper/default.nix
	modified:   pkgs/top-level/all-packages.nix
  • Loading branch information
taikatytto committed May 16, 2020
1 parent 30236ac commit 4d00d0a
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 107 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -1280,6 +1280,12 @@
githubId = 64804;
name = "Dennis Gosnell";
};
ccellado = {
email = "annplague@gmail.com";
github = "ccellado";
githubId = 44584960;
name = "Denis Khalmatov";
};
ceedubs = {
email = "ceedubs@gmail.com";
github = "ceedubs";
Expand Down
11 changes: 5 additions & 6 deletions pkgs/applications/editors/emacs-modes/emacspeak/default.nix
@@ -1,10 +1,9 @@
{ stdenv, fetchurl, makeWrapper, emacs, tcl, tclx, espeak-ng }:
{ stdenv, fetchurl, makeWrapper, emacs, tcl, tclx, espeak-ng, lib }:

stdenv.mkDerivation rec {
pname = "emacspeak";
version = "51.0";


src = fetchurl {
url = "https://github.com/tvraman/emacspeak/releases/download/${version}/${pname}-${version}.tar.bz2";
sha256 = "09a0ywxlqa8jmc0wmvhaf7bdydnkyhy9nqfsdqcpbsgdzj6qpg90";
Expand Down Expand Up @@ -33,11 +32,11 @@ stdenv.mkDerivation rec {
--add-flags '-l "${placeholder "out"}/share/emacs/site-lisp/emacspeak/lisp/emacspeak-setup.elc"'
'';

meta = with stdenv.lib; {
meta = {
homepage = "https://github.com/tvraman/emacspeak/";
description = "Emacs extension that provides spoken output";
license = licenses.gpl2;
maintainers = [ dema ];
platforms = platforms.linux;
license = lib.licenses.gpl2;
maintainers = [ ];
platforms = lib.platforms.linux;
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/networking/browsers/qutebrowser/default.nix
Expand Up @@ -21,12 +21,12 @@ let

in mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "qutebrowser";
version = "1.11.0";
version = "1.11.1";

# the release tarballs are different from the git checkout!
src = fetchurl {
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "0b0qlki9bp9mm41lrh6rc6qqvm4nsz8da63sby3a1f2xm9b9vvg2";
sha256 = "0cxmmw002f5rvxzyhlhzqm2ipf64w4vspf298p6c5kpg535m8cvs";
};

# Needs tox
Expand Down
20 changes: 0 additions & 20 deletions pkgs/development/ocaml-modules/janestreet/re2.nix

This file was deleted.

17 changes: 0 additions & 17 deletions pkgs/development/ocaml-modules/re2/Makefile.patch

This file was deleted.

29 changes: 0 additions & 29 deletions pkgs/development/ocaml-modules/re2/default.nix

This file was deleted.

24 changes: 0 additions & 24 deletions pkgs/development/ocaml-modules/re2/myocamlbuild.patch

This file was deleted.

25 changes: 25 additions & 0 deletions pkgs/development/tools/glpaper/default.nix
@@ -0,0 +1,25 @@
{ stdenv, fetchhg, meson, ninja, pkg-config, wlroots, wayland, wayland-protocols
, libX11, libGL }:

stdenv.mkDerivation {
name = "glpaper";
version = "unstable-2020-03-30";

src = fetchhg {
url = "https://hg.sr.ht/~scoopta/glpaper";
rev = "a95db77088dfb5636a87f3743fc9b5eca70c1ae2";
sha256 = "04y12910wvhy4aqx2sa63dy9l6nbs7b77yqpdhc96x2b3mgzgjfs";
};

nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ wayland wayland-protocols wlroots libX11 libGL ];

meta = with stdenv.lib; {
description =
"Wallpaper program for wlroots based Wayland compositors such as sway that allows you to render glsl shaders as your wallpaper";
homepage = "https://hg.sr.ht/~scoopta/glpaper";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ccellado ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -1856,6 +1856,8 @@ in

gixy = callPackage ../tools/admin/gixy { };

glpaper = callPackage ../development/tools/glpaper { };

gllvm = callPackage ../development/tools/gllvm { };

glide = callPackage ../development/tools/glide { };
Expand Down
9 changes: 0 additions & 9 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -732,8 +732,6 @@ let

ptime = callPackage ../development/ocaml-modules/ptime { };

re2_p4 = callPackage ../development/ocaml-modules/re2 { };

resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { };

result = callPackage ../development/ocaml-modules/ocaml-result { };
Expand Down Expand Up @@ -1168,13 +1166,6 @@ let
then callPackage ../development/ocaml-modules/janestreet/core.nix {}
else core_p4;

re2 =
if lib.versionOlder "4.03" ocaml.version
then janeStreet.re2
else if lib.versionOlder "4.02" ocaml.version
then callPackage ../development/ocaml-modules/janestreet/re2.nix {}
else re2_p4;

textutils =
if lib.versionOlder "4.03" ocaml.version
then janeStreet.textutils
Expand Down

0 comments on commit 4d00d0a

Please sign in to comment.