summary refs log tree commit diff
path: root/pkgs/development/compilers/ponyc/pony-corral.nix
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2023-05-21 10:12:02 -0400
committerYt <happysalada@tuta.io>2023-05-22 11:22:59 -0400
commit95893689008e11846dbbf159d07cb8e155611218 (patch)
tree3b5ec4ec7dcbeea5e5832b46337319f9bc8d7630 /pkgs/development/compilers/ponyc/pony-corral.nix
parentd98364dcbb55267e30ed6642c5523edd03882042 (diff)
downloadnixpkgs-95893689008e11846dbbf159d07cb8e155611218.tar
nixpkgs-95893689008e11846dbbf159d07cb8e155611218.tar.gz
nixpkgs-95893689008e11846dbbf159d07cb8e155611218.tar.bz2
nixpkgs-95893689008e11846dbbf159d07cb8e155611218.tar.lz
nixpkgs-95893689008e11846dbbf159d07cb8e155611218.tar.xz
nixpkgs-95893689008e11846dbbf159d07cb8e155611218.tar.zst
nixpkgs-95893689008e11846dbbf159d07cb8e155611218.zip
pony-corral: unstable -> 0.7.0
Diffstat (limited to 'pkgs/development/compilers/ponyc/pony-corral.nix')
-rw-r--r--pkgs/development/compilers/ponyc/pony-corral.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ponyc/pony-corral.nix b/pkgs/development/compilers/ponyc/pony-corral.nix
index db2473f2914..ce785e5d140 100644
--- a/pkgs/development/compilers/ponyc/pony-corral.nix
+++ b/pkgs/development/compilers/ponyc/pony-corral.nix
@@ -2,11 +2,12 @@
 , stdenv
 , fetchFromGitHub
 , ponyc
+, nix-update-script
 }:
 
 stdenv.mkDerivation ( rec {
   pname = "corral";
-  version = "unstable-2023-02-11";
+  version = "0.7.0";
 
   src = fetchFromGitHub {
     owner = "ponylang";
@@ -19,6 +20,8 @@ stdenv.mkDerivation ( rec {
 
   installFlags = [ "prefix=${placeholder "out"}" "install" ];
 
+  passthru.updateScript = nix-update-script { };
+
   meta = with lib; {
     description = "Corral is a dependency management tool for ponylang (ponyc)";
     homepage = "https://www.ponylang.io";