* Forgot to commit.

[?]
Feb 25, 2009, 2:33 PM
ON4DDIBZQI34VOYOCVK5EAHYIY6M6JANW7SK4CCJWGIFYK55J2BQC

Dependencies

Change contents

  • file addition: NixPkg.pm (----------)
    [2.646]
    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;