home

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

default.nix (514B)


      1 { stdenv, lib, buildGoModule, fetchgit }:
      2 
      3 buildGoModule rec {
      4   name = "nr-${version}";
      5   version = "0.5.0";
      6   rev = "v${version}";
      7 
      8   src = fetchgit {
      9     inherit rev;
     10     url = "https://git.sr.ht/~vdemeester/nr";
     11     sha256 = "0b8y5wsy8f0r9aspn1045nrpkph9kbh6754m2kkyx4i9zjhgnqjp";
     12   };
     13   vendorSha256 = "05bp90qc7w9c9484vy7j1ry1sq4cvmpm94p8vidgfxs2shfv9s9n";
     14 
     15   meta = {
     16     description = "a nix run alias generator";
     17     homepage = "https://git.sr.ht/~vdemeester/nr";
     18     license = lib.licenses.asl20;
     19   };
     20 }