1
0
Fork 0
mirror of https://github.com/NixOS/nixos-artwork synced 2024-10-18 00:06:24 -04:00
nixos-artwork/default.nix

32 lines
674 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
2017-03-16 17:15:31 -04:00
{
bootloader = pkgs.callPackage (
{ stdenv
, lib
, grub2_efi
}:
stdenv.mkDerivation {
name = "nixos-grub-installer-theme";
srcs = lib.cleanSource ./.;
sourceRoot = "source/bootloader";
nativeBuildInputs = [ grub2_efi ];
makeFlags = [ "prefix=$(out)" ];
}
) {};
icons = pkgs.callPackage (
{ stdenv
, lib
, inkscape
, imagemagick
}:
stdenv.mkDerivation {
name = "nixos-icons";
srcs = lib.cleanSource ./.;
sourceRoot = "source/icons";
nativeBuildInputs = [ inkscape imagemagick ];
makeFlags = [ "prefix=$(out)" ];
}
) {};
2017-03-16 17:15:31 -04:00
}