Merge pull request #157868: obconf: Re-init at unstable-2015-02-13

authored by piegames and committed by GitHub 63f6c770 dc794522

+46 -1
+44
pkgs/tools/X11/obconf/default.nix
··· 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config, gtk3, openbox, 2 + imlib2, libxml2, libstartup_notification, makeWrapper, libSM }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "obconf"; 6 + version = "unstable-2015-02-13"; 7 + 8 + src = fetchgit { 9 + url = "git://git.openbox.org/dana/obconf"; 10 + rev = "63ec47c5e295ad4f09d1df6d92afb7e10c3fec39"; 11 + sha256 = "sha256-qwm66VA/ueRMFtSUcrmuObNkz+KYgWRnmR7TnQwpxiE="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + autoreconfHook 16 + pkg-config 17 + ]; 18 + 19 + buildInputs = [ 20 + gtk3 21 + imlib2 22 + libSM 23 + libstartup_notification 24 + libxml2 25 + makeWrapper 26 + openbox 27 + ]; 28 + 29 + postPatch = '' 30 + substituteInPlace configure.ac --replace 2.0.4 ${version} 31 + ''; 32 + 33 + postInstall = '' 34 + wrapProgram $out/bin/obconf --prefix XDG_DATA_DIRS : ${openbox}/share/ 35 + ''; 36 + 37 + meta = { 38 + description = "GUI configuration tool for openbox"; 39 + homepage = "http://openbox.org/wiki/ObConf"; 40 + license = lib.licenses.gpl2Plus; 41 + maintainers = [ lib.maintainers.sfrijters ]; 42 + platforms = lib.platforms.linux; 43 + }; 44 + }
-1
pkgs/top-level/aliases.nix
··· 688 688 nylas-mail-bin = throw "nylas-mail-bin was deprecated on 2019-09-11: abandoned by upstream"; 689 689 oauth2_proxy = oauth2-proxy; # added 2021-04-18 690 690 opencascade_oce = opencascade; # added 2018-04-25 691 - obconf = throw "obconf has been removed"; # added 2022-01-16 692 691 oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # added 2019-12-10 693 692 octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set."; # added 2021-01-24 694 693 ofp = throw "ofp is not compatible with odp-dpdk";
+2
pkgs/top-level/all-packages.nix
··· 28032 28032 28033 28033 nvpy = callPackage ../applications/editors/nvpy { }; 28034 28034 28035 + obconf = callPackage ../tools/X11/obconf { }; 28036 + 28035 28037 oberon-risc-emu = callPackage ../misc/emulators/oberon-risc-emu { }; 28036 28038 28037 28039 obs-studio = libsForQt5.callPackage ../applications/video/obs-studio {};