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