tv: use only pkgs

This commit is contained in:
tv 2015-08-29 00:19:52 +02:00
parent 81eaf7a9e7
commit 09257f9782
6 changed files with 14 additions and 30 deletions

View File

@ -2,10 +2,6 @@
with lib;
let
tvpkgs = import ../5pkgs { inherit lib pkgs; };
in
{
krebs.build.host = config.krebs.hosts.cd;
krebs.build.user = config.krebs.users.tv;
@ -136,7 +132,7 @@ in
server-names = singleton "viljetic.de";
# TODO directly set root (instead via location)
locations = singleton (nameValuePair "/" ''
root ${tvpkgs.viljetic-pages};
root ${pkgs.viljetic-pages};
'');
};
}

View File

@ -2,10 +2,6 @@
with lib;
let
tvpkgs = import ../5pkgs { inherit lib pkgs; };
in
{
krebs.build.host = config.krebs.hosts.wu;
krebs.build.user = config.krebs.users.tv;
@ -39,12 +35,12 @@ in
environment.systemPackages = with pkgs; [
# stockholm
genid
git
gnumake
hashPassword
lentil
parallel
tvpkgs.genid
tvpkgs.hashPassword
tvpkgs.lentil
(pkgs.writeScriptBin "ff" ''
#! ${pkgs.bash}/bin/bash
exec sudo -u ff -i <<EOF
@ -72,6 +68,8 @@ in
# tv
bc
bind # dig
cac
dic
file
gitAndTools.qgit
gnupg21
@ -84,6 +82,7 @@ in
netcat
nix-repl
nmap
nq
p7zip
pavucontrol
posix_man_pages
@ -91,9 +90,6 @@ in
sxiv
texLive
tmux
tvpkgs.cac
tvpkgs.dic
tvpkgs.nq
zathura
#ack

View File

@ -1,9 +1,5 @@
{ config, lib, pkgs, ... }:
let
tvpkgs = import ../5pkgs { inherit lib pkgs; };
in
with builtins;
with lib;
let
@ -63,7 +59,7 @@ let
ExecStart = pkgs.writeScript "charybdis-service" ''
#! /bin/sh
set -euf
exec ${tvpkgs.charybdis}/bin/charybdis-ircd \
exec ${pkgs.charybdis}/bin/charybdis-ircd \
-foreground \
-logfile /dev/stderr \
-configfile ${configFile}

View File

@ -1,7 +1,6 @@
{ lib, pkgs, ... }:
with import ../5pkgs { inherit lib pkgs; };
{ pkgs, ... }:
with pkgs;
{
environment.systemPackages = [
much

View File

@ -3,8 +3,6 @@
with import ../4lib { inherit lib pkgs; };
let
tvpkgs = import ../5pkgs { inherit lib pkgs; };
out = {
environment.systemPackages = [
su-test
@ -17,12 +15,12 @@ let
};
};
su-test = tvpkgs.execveBin "su-test" rec {
su-test = pkgs.execveBin "su-test" rec {
filename = "/var/setuid-wrappers/sudo";
argv = ["sudo" "-u" "test" "-i"];
};
test-shell = tvpkgs.execve "test-shell" rec {
test-shell = pkgs.execve "test-shell" rec {
filename = "${pkgs.bash}/bin/bash";
argv = ["sh" "--noprofile" "-l"];
envp.ENV = pkgs.writeText "test-env" ''

View File

@ -1,11 +1,10 @@
{ lib, pkgs, ... }:
{ pkgs, ... }:
let
inherit (pkgs) callPackage;
kpkgs = import ../../krebs/5pkgs { inherit lib pkgs; };
in
kpkgs // {
{
charybdis = callPackage ./charybdis {};
lentil = callPackage ./lentil {};
much = callPackage ./much.nix {};