2021-07-18 21:22:44 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, bzip2
|
2024-09-26 11:04:55 +00:00
|
|
|
, nixVersions
|
2021-07-18 21:22:44 +00:00
|
|
|
, makeWrapper
|
|
|
|
, nixosTests
|
2024-09-26 11:04:55 +00:00
|
|
|
, fetchpatch
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2024-09-26 11:04:55 +00:00
|
|
|
rev = "77ffa33d83d2c7c6551c5e420e938e92d72fec24";
|
|
|
|
sha256 = "sha256-MJRdVO2pt7wjOu5Hk0eVeNbk5bK5+Uo/Gh9XfO4OlMY=";
|
|
|
|
nix = nixVersions.nix_2_24;
|
|
|
|
inherit (nix.perl-bindings) perl;
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2021-08-05 21:33:18 +00:00
|
|
|
pname = "nix-serve";
|
2023-02-02 18:25:31 +00:00
|
|
|
version = "0.2-${lib.substring 0 7 rev}";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "edolstra";
|
|
|
|
repo = "nix-serve";
|
|
|
|
inherit rev sha256;
|
|
|
|
};
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
patches = [
|
|
|
|
# Part of https://github.com/edolstra/nix-serve/pull/61
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/edolstra/nix-serve/commit/9e434fff4486afeb3cc3f631f6dc56492b204704.patch";
|
|
|
|
sha256 = "sha256-TxQ6q6UApTKsYIMdr/RyrkKSA3k47stV63bTbxchNTU=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-04-12 18:23:04 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-04-12 18:23:04 +00:00
|
|
|
install -Dm0755 nix-serve.psgi $out/libexec/nix-serve/nix-serve.psgi
|
|
|
|
|
|
|
|
makeWrapper ${perl.withPackages(p: [ p.DBDSQLite p.Plack p.Starman nix.perl-bindings ])}/bin/starman $out/bin/nix-serve \
|
2023-02-02 18:25:31 +00:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ bzip2 nix ]}" \
|
2021-04-12 18:23:04 +00:00
|
|
|
--add-flags $out/libexec/nix-serve/nix-serve.psgi
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
/** The nix package that nix-serve got its nix perl bindings from. */
|
|
|
|
passthru.nix = nix;
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
passthru.tests = {
|
|
|
|
nix-serve = nixosTests.nix-serve;
|
|
|
|
nix-serve-ssh = nixosTests.nix-serve-ssh;
|
|
|
|
};
|
2021-07-18 21:22:44 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/edolstra/nix-serve";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Utility for sharing a Nix store as a binary cache";
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = nix.meta.platforms;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "nix-serve";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|