nixpkgs/pkgs/by-name/ni/nix-serve/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, bzip2
2024-09-20 13:54:08 +00:00
, nixVersions
, makeWrapper
, nixosTests
, fetchpatch
}:
2014-12-14 01:18:14 +00:00
let
rev = "77ffa33d83d2c7c6551c5e420e938e92d72fec24";
sha256 = "sha256-MJRdVO2pt7wjOu5Hk0eVeNbk5bK5+Uo/Gh9XfO4OlMY=";
2024-09-20 13:54:08 +00:00
nix = nixVersions.nix_2_24;
inherit (nix.perl-bindings) perl;
in
2014-12-14 01:18:14 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "nix-serve";
version = "0.2-${lib.substring 0 7 rev}";
2014-12-14 01:18:14 +00:00
src = fetchFromGitHub {
owner = "edolstra";
repo = "nix-serve";
inherit rev sha256;
2014-12-14 01:18:14 +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=";
})
];
nativeBuildInputs = [ makeWrapper ];
2014-12-14 01:18:14 +00:00
dontBuild = true;
2014-12-14 01:18:14 +00:00
installPhase = ''
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 \
--prefix PATH : "${lib.makeBinPath [ bzip2 nix ]}" \
--add-flags $out/libexec/nix-serve/nix-serve.psgi
'';
2014-12-14 01:18:14 +00:00
2024-09-17 13:03:12 +00:00
/** The nix package that nix-serve got its nix perl bindings from. */
passthru.nix = nix;
passthru.tests = {
nix-serve = nixosTests.nix-serve;
nix-serve-ssh = nixosTests.nix-serve-ssh;
};
meta = with lib; {
homepage = "https://github.com/edolstra/nix-serve";
2014-12-14 01:18:14 +00:00
description = "Utility for sharing a Nix store as a binary cache";
maintainers = [ maintainers.eelco ];
license = licenses.lgpl21;
# See https://github.com/edolstra/nix-serve/issues/57
broken = stdenv.hostPlatform.isDarwin;
2014-12-14 01:18:14 +00:00
platforms = nix.meta.platforms;
2023-11-27 01:17:53 +00:00
mainProgram = "nix-serve";
2014-12-14 01:18:14 +00:00
};
}