home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

default.nix (198B)


      1 { stdenv }:
      2 
      3 stdenv.mkDerivation {
      4   name = "univ";
      5   src = ./.;
      6   phases = [ "installPhase" "fixupPhase" ];
      7   installPhase = ''
      8     mkdir -p $out $out/bin
      9     cp $src/univ.sh $out/bin/univ
     10   '';
     11 }