summary refs log tree commit diff
path: root/pkgs/applications/virtualization
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@gmail.com>2021-12-02 01:26:52 +0300
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-12-02 18:11:09 +1000
commitcf6fc1fd1734373a5dc9dc6c223caaaad2a8592e (patch)
tree43ddd5693e54b7083606d05aed929a31b88317a7 /pkgs/applications/virtualization
parent352a3d75387609469fa23b0bcaaba03541e0a396 (diff)
downloadnixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.tar
nixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.tar.gz
nixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.tar.bz2
nixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.tar.lz
nixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.tar.xz
nixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.tar.zst
nixpkgs-cf6fc1fd1734373a5dc9dc6c223caaaad2a8592e.zip
podman-compose: 2021-05-18 → 0.1.8
Diffstat (limited to 'pkgs/applications/virtualization')
-rw-r--r--pkgs/applications/virtualization/podman-compose/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/applications/virtualization/podman-compose/default.nix b/pkgs/applications/virtualization/podman-compose/default.nix
index 2a6d2a20c44..c18790c1b88 100644
--- a/pkgs/applications/virtualization/podman-compose/default.nix
+++ b/pkgs/applications/virtualization/podman-compose/default.nix
@@ -1,19 +1,15 @@
 { lib, buildPythonApplication, fetchFromGitHub, pyyaml }:
 
 buildPythonApplication rec {
-  version = "0.2.0pre-2021-05-18";
+  version = "0.1.8";
   pname = "podman-compose";
 
   # "This project is still under development." -- README.md
-  #
-  # As of May 2021, the latest release (0.1.5) has fewer than half of all
-  # commits. This project seems to have no release management, so the last
-  # commit is the best one until proven otherwise.
   src = fetchFromGitHub {
     repo = "podman-compose";
     owner = "containers";
-    rev = "62d2024feecf312e9591cc145f49cee9c70ab4fe";
-    sha256 = "17992imkvi6129wvajsp0iz5iicfmh53i20qy2mzz17kcz30r2pp";
+    rev = version;
+    sha256 = "sha256-BN6rG46ejYY6UCNjKYQpxPQGTW3x12zpGDnH2SKn304=";
   };
 
   propagatedBuildInputs = [ pyyaml ];
@@ -21,7 +17,7 @@ buildPythonApplication rec {
   meta = {
     description = "An implementation of docker-compose with podman backend";
     homepage = "https://github.com/containers/podman-compose";
-    license = lib.licenses.gpl2;
+    license = lib.licenses.gpl2Only;
     platforms = lib.platforms.linux;
     maintainers = [ lib.maintainers.sikmir ] ++ lib.teams.podman.members;
   };