2022-07-30 19:48:40 +02:00
|
|
|
{ stdenvNoCC, npins, pins }:
|
2022-07-25 11:58:20 +02:00
|
|
|
|
|
|
|
let
|
2022-07-30 19:49:22 +02:00
|
|
|
src = npins.mkSource pins.stevenblack-hosts;
|
2022-07-25 11:58:20 +02:00
|
|
|
in
|
2022-05-27 01:00:10 +02:00
|
|
|
|
2022-07-30 19:48:40 +02:00
|
|
|
stdenvNoCC.mkDerivation {
|
|
|
|
pname = "stevenblack-hosts";
|
2022-07-30 19:49:22 +02:00
|
|
|
inherit (pins.stevenblack-hosts) version;
|
2022-07-30 19:48:40 +02:00
|
|
|
buildCommand = ''
|
|
|
|
cp ${src}/hosts $out
|
|
|
|
'';
|
|
|
|
}
|