diff --git a/archlinux-nix/.SRCINFO b/archlinux-nix/.SRCINFO new file mode 100644 index 0000000..0e5ca40 --- /dev/null +++ b/archlinux-nix/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = archlinux-nix + pkgdesc = A command-line tool for setting up Nix on Arch Linux + pkgver = 2.0.0 + pkgrel = 1 + url = https://github.com/asppsa/archlinux-nix + arch = any + license = Apache + depends = xz + source = https://github.com/asppsa/archlinux-nix/archive/v2.0.0.tar.gz + sha256sums = 63b9dc8997cab8d9c4a9d8bcb9009e7af3056605af56a2193548dbd59f817db4 + +pkgname = archlinux-nix + diff --git a/archlinux-nix/.gitignore b/archlinux-nix/.gitignore new file mode 100644 index 0000000..7984527 --- /dev/null +++ b/archlinux-nix/.gitignore @@ -0,0 +1,2 @@ +/pkg +/src diff --git a/archlinux-nix/.gitrepo b/archlinux-nix/.gitrepo new file mode 100644 index 0000000..9782b68 --- /dev/null +++ b/archlinux-nix/.gitrepo @@ -0,0 +1,12 @@ +; DO NOT EDIT (unless you know what you are doing) +; +; This subdirectory is a git "subrepo", and this file is maintained by the +; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme +; +[subrepo] + remote = https://aur.archlinux.org/archlinux-nix + branch = master + commit = beaed1ef24bbcada74395c5f96aa4f12ad0a8861 + parent = f64de9a8da7300faa6e6fb448d57441716b93acf + method = merge + cmdver = 0.4.3 diff --git a/archlinux-nix/PKGBUILD b/archlinux-nix/PKGBUILD new file mode 100644 index 0000000..0e0e567 --- /dev/null +++ b/archlinux-nix/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Alastair Pharo +pkgname=archlinux-nix +pkgver=2.0.0 +pkgrel=1 +epoch= +pkgdesc="A command-line tool for setting up Nix on Arch Linux" +arch=('any') +url="https://github.com/asppsa/archlinux-nix" +license=('Apache') +groups=() +depends=('xz') +makedepends=() +checkdepends=() +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +install= +changelog= +source=("https://github.com/asppsa/$pkgname/archive/v$pkgver.tar.gz") +noextract=() +sha256sums=('63b9dc8997cab8d9c4a9d8bcb9009e7af3056605af56a2193548dbd59f817db4') +validpgpkeys=() + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +}