* Forgot to commit.

This commit is contained in:
Eelco Dolstra 2009-02-25 14:33:33 +00:00
parent cb342ed0dd
commit 537f7c8c88

View file

@ -0,0 +1,22 @@
package Hydra::View::NixPkg;
use strict;
use base qw/Catalyst::View/;
sub process {
my ($self, $c) = @_;
$c->response->content_type('application/nix-package');
my $build = $c->stash->{build};
my $s = "NIXPKG1 " . $c->uri_for("manifest", $build->id)
. " " . $build->nixname . " " . $build->system
. " " . $build->drvpath . " " . $build->outpath;
$c->response->body($s);
return 1;
}
1;