Zpkgs tv genid: init

This commit is contained in:
tv 2015-07-19 16:20:16 +02:00
parent 2457f4183b
commit d0a1d84118
2 changed files with 22 additions and 0 deletions

View file

@ -3,6 +3,7 @@
pkgs //
{
dic = pkgs.callPackage ./dic.nix {};
genid = pkgs.callPackage ./genid.nix {};
github-hosts-sync = pkgs.callPackage ./github-hosts-sync.nix {};
github-known_hosts = pkgs.callPackage ./github-known_hosts.nix {};
much = pkgs.callPackage ./much.nix {};

21
Zpkgs/tv/genid.nix Normal file
View file

@ -0,0 +1,21 @@
{ lib, pkgs, ... }:
pkgs.writeScriptBin "genid" ''
#! /bin/sh
# usage: genid NAME
set -euf
export PATH=${lib.makeSearchPath "bin" (with pkgs; [
bc
coreutils
])}
name=$1
hash=$(printf %s "$name" | sha1sum | cut -d\ -f1 | tr a-f A-F)
echo "
min=2^16 # bigger than nobody and nogroup, see <nixos/modules/misc/ids.nix>
max=2^32 # see 2^(8*sizeof(uid_t))
ibase=16
($hash + min) % max
" | bc
''