5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
21 lines
670 B
Nix
21 lines
670 B
Nix
{ lib, stdenv, fetchurl, dysnomia, disnix, socat, pkg-config, getopt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "disnixos";
|
|
version = "0.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/svanderburg/disnixos/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0adv6dm6hszjhzkfkw48pmi37zj32plcibk80r6bm907mm7n50lj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ socat dysnomia disnix getopt ];
|
|
|
|
meta = {
|
|
description = "Provides complementary NixOS infrastructure deployment to Disnix";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|